Created
June 15, 2015 07:18
-
-
Save genuinelucifer/e2d636b1b021fc303f0b to your computer and use it in GitHub Desktop.
Trying to recreate contructor ignore issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/tests/Basic/Basic.h b/tests/Basic/Basic.h | |
index baf923f..f9d4e8e 100644 | |
--- a/tests/Basic/Basic.h | |
+++ b/tests/Basic/Basic.h | |
@@ -720,3 +720,15 @@ struct CS_VALUE_TYPE ValueTypeArrays | |
char thirdValueTypeArray[ARRAY_LENGTH]; | |
size_t size; | |
}; | |
+ | |
+ | |
+#define CS_IGNORE | |
+class DLL_API ConstructIgnoreCheck | |
+{ | |
+public: | |
+ int m; | |
+ CS_IGNORE ConstructIgnoreCheck(int n) | |
+ { | |
+ m = n; | |
+ } | |
+}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment