diff options
author | lloyd <[email protected]> | 2010-11-03 21:35:20 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-11-03 21:35:20 +0000 |
commit | 185399c5548c88bdd2d8e68343b03ee7cbc066d8 (patch) | |
tree | 4a9d1cc2202afea14e1e17158466716edc7de55d /src | |
parent | 8b755ab03eb3cf3868810f6116bbc88c293ce268 (diff) |
Clang's deprecated doesn't support a message at all
Diffstat (limited to 'src')
-rw-r--r-- | src/build-data/buildh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-data/buildh.in b/src/build-data/buildh.in index 040e92692..fb5e5fabc 100644 --- a/src/build-data/buildh.in +++ b/src/build-data/buildh.in @@ -77,7 +77,7 @@ #if !defined(BOTAN_NO_DEPRECATED_WARNINGS) #if defined(__clang__) - #define BOTAN_DEPRECATED(msg) __attribute__ ((deprecated(msg))) + #define BOTAN_DEPRECATED(msg) __attribute__ ((deprecated)) #elif defined(_MSC_VER) #define BOTAN_DEPRECATED(msg) __declspec(deprecated(msg)) |