summaryrefslogtreecommitdiff
path: root/src/ildasm/util.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ildasm/util.hpp')
-rw-r--r--src/ildasm/util.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ildasm/util.hpp b/src/ildasm/util.hpp
new file mode 100644
index 0000000000..8ad5bc4b3b
--- /dev/null
+++ b/src/ildasm/util.hpp
@@ -0,0 +1,21 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+//
+// util.hpp
+//
+// Miscellaneous useful functions
+//
+#ifndef _H_UTIL
+#define _H_UTIL
+
+#include <objbase.h>
+
+#if defined(_DEBUG)
+#include <crtdbg.h>
+#undef _ASSERTE // utilcode defines a custom _ASSERTE
+#endif
+
+#include "utilcode.h"
+
+#endif /* _H_UTIL */