Browse Source

[master] Correcting previous change.

Replace <cstdint> with <stdint.h> because the former is C++11 only.
Marcin Siodelski 9 years ago
parent
commit
5adcd2c020
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/util/strutil.h

+ 1 - 1
src/lib/util/strutil.h

@@ -9,7 +9,7 @@
 
 #include <algorithm>
 #include <cctype>
-#include <cstdint>
+#include <stdint.h>
 #include <string>
 #include <sstream>
 #include <vector>