summaryrefslogtreecommitdiff
path: root/src/lib/crypto
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-03-12 17:08:53 -0700
committerRosen Penev <rosenp@gmail.com>2020-03-12 19:04:39 -0700
commita2f5a63bbc1a21be672d358a107a3a206c0c5369 (patch)
tree7d2bea6fdbaa44d80db0f8dba2851c2de92d768e /src/lib/crypto
parent2db8bcc353ce4360a6dbe4c73afcaae1c27fce43 (diff)
replace stdint.h with cstdint
The former is deprecated by C++14. The standard says they are the same: The header defines all types and macros the same as the C standard library header<stdint.h>. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/lib/crypto')
-rw-r--r--src/lib/crypto/MD5.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/crypto/MD5.hxx b/src/lib/crypto/MD5.hxx
index d8018b6dc..f85cca911 100644
--- a/src/lib/crypto/MD5.hxx
+++ b/src/lib/crypto/MD5.hxx
@@ -34,8 +34,7 @@
#include "util/Compiler.h"
#include <array>
-
-#include <stdint.h>
+#include <cstdint>
template<typename T> struct ConstBuffer;