Переглянути джерело

Added #include "unordered_map" to main header

Simply following README.md steps produced an error where "unordered_map" types were not found; Fixed by simply including it on the main header file.
Marcus Davi 5 роки тому
батько
коміт
d68740570c
1 змінених файлів з 1 додано та 0 видалено
  1. 1 0
      matplotlibcpp.h

+ 1 - 0
matplotlibcpp.h

@@ -9,6 +9,7 @@
 #include <iostream>
 #include <cstdint> // <cstdint> requires c++11 support
 #include <functional>
+#include <unordered_map>
 
 #include <Python.h>