Skip to content

Commit 9a23f51

Browse files
committed
Fixed missing options copy in ParserOptions copy constructor.
1 parent 5c4f3be commit 9a23f51

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Parser/ParserOptions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,12 @@ public ParserOptions(ParserOptions options)
7373
NoBuiltinIncludes = options.NoBuiltinIncludes;
7474
MicrosoftMode = options.MicrosoftMode;
7575
Verbose = options.Verbose;
76+
EnableRTTI = options.EnableRTTI;
7677
LanguageVersion = options.LanguageVersion;
7778
UnityBuild = options.UnityBuild;
79+
SkipPrivateDeclarations = options.SkipPrivateDeclarations;
80+
SkipFunctionBodies = options.SkipFunctionBodies;
81+
SkipLayoutInfo = options.SkipLayoutInfo;
7882
ForceClangToolchainLookup = options.ForceClangToolchainLookup;
7983
}
8084

0 commit comments

Comments
 (0)