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

Avoid violating -Wpedantic #1272

Merged
merged 1 commit into from
Feb 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Fw/Types/StringUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ char* string_copy(char* destination, const char* source, U32 num);
*/
U32 string_length(const CHAR* source, U32 max_len);

}; // namespace StringUtils
}; // namespace Fw
} // namespace StringUtils
} // namespace Fw
#endif // FW_STRINGUTILS_HPP
2 changes: 1 addition & 1 deletion Os/Posix/TaskId.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

extern "C" {
#include <pthread.h>
};
}

#include <Os/TaskId.hpp>

Expand Down
2 changes: 1 addition & 1 deletion Os/TaskIdRepr.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#if defined(TGT_OS_TYPE_LINUX) || defined(TGT_OS_TYPE_DARWIN)
extern "C" {
#include <pthread.h>
};
}
#endif

namespace Os {
Expand Down
2 changes: 1 addition & 1 deletion Svc/CmdSequencer/CmdSequencerImpl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,6 @@ namespace Svc {
bool m_join_waiting;
};

};
}

#endif