浏览代码

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>