浏览代码

Fix an issue where we used std::string without including it properly.

Sam Jaffe 5 年之前
父节点
当前提交
f096edddd9
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      include/expect/expect.hpp

+ 1 - 0
include/expect/expect.hpp

@@ -8,6 +8,7 @@
 #pragma once
 
 #include <stdexcept>
+#include <string>
 
 #undef CONCAT2
 #define CONCAT2(A, B) A##B