diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-09-03 11:28:55 +0100 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-09-03 11:29:42 +0100 |
commit | f6ad1954f76165aefb05e12e5f82cbf5d763c85e (patch) | |
tree | e125249063f688eb90582016838d0c876a68918c /modules/cvtt | |
parent | 493b30821529baf2c235eb387f2b7964774c0cc7 (diff) |
Ensure header guards enclose entire header.
Diffstat (limited to 'modules/cvtt')
-rw-r--r-- | modules/cvtt/register_types.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/cvtt/register_types.h b/modules/cvtt/register_types.h index 8472980c6a..36b5e332d6 100644 --- a/modules/cvtt/register_types.h +++ b/modules/cvtt/register_types.h @@ -28,14 +28,14 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifdef TOOLS_ENABLED - #ifndef CVTT_REGISTER_TYPES_H #define CVTT_REGISTER_TYPES_H +#ifdef TOOLS_ENABLED + void register_cvtt_types(); void unregister_cvtt_types(); -#endif // CVTT_REGISTER_TYPES_H - #endif // TOOLS_ENABLED + +#endif // CVTT_REGISTER_TYPES_H |