summaryrefslogtreecommitdiffstats
path: root/src/msvc_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/msvc_helper.h')
-rw-r--r--src/msvc_helper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msvc_helper.h b/src/msvc_helper.h
index f623520..c68f631 100644
--- a/src/msvc_helper.h
+++ b/src/msvc_helper.h
@@ -13,7 +13,7 @@
// limitations under the License.
#include <string>
-#include <vector>
+#include <set>
using namespace std;
/// Visual Studio's cl.exe requires some massaging to work with Ninja;
@@ -50,5 +50,5 @@ struct CLWrapper {
static bool FilterInputFilename(const string& line);
void* env_block_;
- vector<string> includes_;
+ set<string> includes_;
};