Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

started unifying tracing #65

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open

started unifying tracing #65

wants to merge 22 commits into from

Conversation

rschoene
Copy link
Member

Please provide feedback on C++ and cmake. I think all of this could be more elegant.

Comment on lines 31 to 32
inline void regionBegin(const char* const region_name);
inline void regionEnd(const char* const region_name);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
inline void regionBegin(const char* const region_name);
inline void regionEnd(const char* const region_name);
void regionBegin(const char* const region_name);
void regionEnd(const char* const region_name);

Comment on lines 29 to 35
inline void Tracing::regionBegin(const char* const region_name) {
// Do nothing
}

inline void Tracing::regionEnd(const char* const region_name) {
// Do nothing
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
inline void Tracing::regionBegin(const char* const region_name) {
// Do nothing
}
inline void Tracing::regionEnd(const char* const region_name) {
// Do nothing
}
inline void Tracing::regionBegin(const char* const) {
// Do nothing
}
inline void Tracing::regionEnd(const char* const) {
// Do nothing
}

fix warnings

@rschoene rschoene linked an issue Sep 20, 2024 that may be closed by this pull request
13 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unify tracing infrastructure
2 participants