Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors when encountering Preoprocessor Macros while listing initializers in constructors #132

Closed
Gugli opened this issue Apr 26, 2018 · 1 comment

Comments

@Gugli
Copy link
Contributor

Gugli commented Apr 26, 2018

Here's a small sample that shows the issue

struct MyClass
{
	int A;
#if DEFINE
	int B;
#endif

	MyClass() : A(-1) 
#if DEFINE
		,B(42)
#endif
	{}
};

I'll try to make a pull request if I find a solution.

@Gugli Gugli changed the title Errors when encountering Preoprocessor Macros while listing initializers in Errors when encountering Preoprocessor Macros while listing initializers in constructors Apr 26, 2018
@myint
Copy link
Owner

myint commented Nov 4, 2018

Closed by #139.

@myint myint closed this as completed Nov 4, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants