diff options
Diffstat (limited to 'src/lib/utils/compiler.h')
-rw-r--r-- | src/lib/utils/compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/utils/compiler.h b/src/lib/utils/compiler.h index 9348909e8..c515e0507 100644 --- a/src/lib/utils/compiler.h +++ b/src/lib/utils/compiler.h @@ -6,7 +6,7 @@ */ /* This header is included in both C++ and C (via ffi.h) and should only - contain macro definitions. + contain macro definitions. Avoid C++ style // comments in this file. */ #ifndef BOTAN_UTIL_COMPILER_FLAGS_H_ @@ -105,7 +105,7 @@ #define BOTAN_DEPRECATED(msg) __declspec(deprecated(msg)) #elif defined(__GNUG__) - // msg supported since GCC 4.5, earliest we support is 4.8 + /* msg supported since GCC 4.5, earliest we support is 4.8 */ #define BOTAN_DEPRECATED(msg) __attribute__ ((deprecated(msg))) #endif |