-
Notifications
You must be signed in to change notification settings - Fork 2.7k
forwards.h doesn't declare most useful classes #904
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
Comments
I've tried to add declaration /software/jsoncpp-1.8.4/include/json/forwards.h:21:7: error: multiple types in one declaration |
That sounds like you're just missing a semicolon: class Foo
class Bar;
// ^~~ error: multiple types in one declaration class Foo {}
class Bar;
// ^~~ error: multiple types in one declaration |
@abigailbunyan You said it! Thank you bro! |
json/forwards.h
forward declares the deprecated FastWriter and Reader, but not the non-deprecated replacements StreamWriter and CharReader.The text was updated successfully, but these errors were encountered: