aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Butum <alexbutum@linux.com>2014-07-08 12:30:45 +0300
committerAlex Butum <alexbutum@linux.com>2014-07-08 12:30:45 +0300
commitbea1d02fff11f25bce1838f52835883bd815f1e5 (patch)
tree82f6d2a4794e77cfb06def12c24c8531fef5f337
parentb02209bc5596e682c9beb3939f263d8731db940f (diff)
downloadcrow-bea1d02fff11f25bce1838f52835883bd815f1e5.tar.gz
crow-bea1d02fff11f25bce1838f52835883bd815f1e5.zip
Use C++ cstdint header in crow.h
-rw-r--r--crow.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crow.h b/crow.h
index 82294e7..025d174 100644
--- a/crow.h
+++ b/crow.h
@@ -1,9 +1,10 @@
#pragma once
+
#include <string>
#include <functional>
#include <memory>
#include <future>
-#include <stdint.h>
+#include <cstdint>
#include <type_traits>
#include <thread>