Skip to content

Commit f01a33e

Browse files
style: pre-commit.ci fixes
1 parent c72155d commit f01a33e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/CLI/Macros.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,16 +125,16 @@
125125
/** rtti enabled */
126126
#ifndef CLI11_HAS_RTTI
127127
#if defined(__GXX_RTTI) && __GXX_RTTI == 1
128-
//gcc
128+
// gcc
129129
#define CLI11_HAS_RTTI 1
130130
#elif defined(_CPPRTTI) && _CPPRTTI == 1
131-
//msvc
131+
// msvc
132132
#define CLI11_HAS_RTTI 1
133133
#elif defined(__NO_RTTI__) && __NO_RTTI__ == 1
134-
//intel
134+
// intel
135135
#define CLI11_HAS_RTTI 0
136136
#elif defined(__has_feature)
137-
//clang and other newer compilers
137+
// clang and other newer compilers
138138
#if __has_feature(cxx_rtti)
139139
#define CLI11_HAS_RTTI 1
140140
#else

0 commit comments

Comments
 (0)