We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This snippet triggers the include guard hook:
some_header.hpp
#pragma once #ifndef PACKED #define PACKED __attribute__((__packed__)) #endif #include <actionlib/server/simple_action_server.h>
It creates this:
#pragma once #ifndef ROBOT__SOME_HEADER_HPP #define ROBOT__SOME_HEADER_HPP #endif // ROBOT__SOME_HEADER_HPP #include <actionlib/server/simple_action_server.h>
However the #pragma once should disable this check I'd say.
#pragma once
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This snippet triggers the include guard hook:
some_header.hpp
It creates this:
However the
#pragma once
should disable this check I'd say.The text was updated successfully, but these errors were encountered: