diff options
author | schregger <[email protected]> | 2017-12-12 11:13:38 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2017-12-12 11:13:38 +0100 |
commit | 44be41a73ed6c5af722bbe1cb959d90ba2e0ac71 (patch) | |
tree | 7d54526cb4fe3d5479a8c857dc904aefc45080f2 /src/lib/base | |
parent | 08bdefc9912101579218503c83b28db6e2cdc581 (diff) |
Fix pragma message to avoid warning
Missing parentheses around pragma message caused warnings in Visual Studio.
Diffstat (limited to 'src/lib/base')
-rw-r--r-- | src/lib/base/botan.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/base/botan.h b/src/lib/base/botan.h index ddea0d4ad..26bfa75a7 100644 --- a/src/lib/base/botan.h +++ b/src/lib/base/botan.h @@ -19,7 +19,7 @@ #if defined(__GNUC__) #warning "botan/botan.h is deprecated" #elif defined(_MSC_VER) - #pragma message "botan/botan.h is deprecated" + #pragma message ("botan/botan.h is deprecated") #endif #include <botan/lookup.h> |