summaryrefslogtreecommitdiff
path: root/src/jit/jitstd/jitstd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/jitstd/jitstd.cpp')
-rw-r--r--src/jit/jitstd/jitstd.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/jit/jitstd/jitstd.cpp b/src/jit/jitstd/jitstd.cpp
new file mode 100644
index 0000000000..2366836c67
--- /dev/null
+++ b/src/jit/jitstd/jitstd.cpp
@@ -0,0 +1,35 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+// jitstd.cpp : Defines the entry point for the console application.
+//
+
+
+#include "stdafx.h"
+
+#include <iostream>
+#include <windows.h>
+#include <string>
+
+#include "iallocator.h"
+
+#include "algorithm.h"
+#include "functional.h"
+#include "hash.h"
+
+#include "unordered_map.h"
+#include "unordered_set.h"
+#include "hashtable.h"
+#include "list.h"
+#include "vector.h"
+#include "pair.h"
+
+int _tmain(int argc, _TCHAR* argv[])
+{
+ // return test1();
+ return 0;
+}
+
+