diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2019-08-08 10:28:57 -0500 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2019-08-08 10:28:57 -0500 |
commit | 6c44fcc290ae6a4c636d3c4694e908cb17dd3cfc (patch) | |
tree | d623c8318021454f6d4ee6ffd8ae49b611d52415 | |
parent | c8e7031198d1bf61112ec34310cc5a40ae2d4138 (diff) | |
download | infinitytier-6c44fcc290ae6a4c636d3c4694e908cb17dd3cfc.tar.gz infinitytier-6c44fcc290ae6a4c636d3c4694e908cb17dd3cfc.zip |
more warning cleanup
-rw-r--r-- | node/C25519.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/node/C25519.cpp b/node/C25519.cpp index 38cfd614..d7c7011f 100644 --- a/node/C25519.cpp +++ b/node/C25519.cpp @@ -22,6 +22,10 @@ Derived from public domain code by D. J. Bernstein. #pragma warning(disable: 4146) #endif +#ifdef __GNUC__ +#pragma GCC diagnostic ignored "-Wunused-function" +#endif + namespace { #define crypto_int32 int32_t |