Skip to content

Instantly share code, notes, and snippets.

@genuinelucifer
Created June 15, 2015 07:18
Show Gist options
  • Save genuinelucifer/e2d636b1b021fc303f0b to your computer and use it in GitHub Desktop.
Save genuinelucifer/e2d636b1b021fc303f0b to your computer and use it in GitHub Desktop.
Trying to recreate contructor ignore issue
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