Parcourir la source

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 il y a 5 ans
Parent
commit
d68740570c
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  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>