Parcourir la source

[master] Correcting previous change.

Replace <cstdint> with <stdint.h> because the former is C++11 only.
Marcin Siodelski il y a 9 ans
Parent
commit
5adcd2c020
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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>