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

[C++][qt] Fix warning message #7815

Merged
merged 2 commits into from Mar 12, 2018
Merged

[C++][qt] Fix warning message #7815

merged 2 commits into from Mar 12, 2018

Conversation

MartinDelille
Copy link
Contributor

PR checklist

  • Read the contribution guidelines.
  • Ran the shell script under ./bin/ to update Petstore sample so that CIs can verify the change. (For instance, only need to run ./bin/{LANG}-petstore.sh and ./bin/security/{LANG}-petstore.sh if updating the {LANG} (e.g. php, ruby, python, etc) code generator or {LANG} client's mustache templates). Windows batch files can be found in .\bin\windows\.
  • Filed the PR against the correct branch: 3.0.0 branch for changes related to OpenAPI spec 3.0. Default: master.
  • Copied the technical committee to review the pull request if your PR is targeting a particular programming language.

Description of the PR

There is currently a warning when compiling Qt models:

/path/to/client/SWGApiResponse.h:39:10: warning: 'asJson' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
        QString asJson ();
                ^

These PR fix it.

Ping @ravinikam @stkrwork @fvarose

@etherealjoy
Copy link
Contributor

Looks good to me, good increments to improve the qtcpp generator.
@MartinDelille Are you working with a complex yaml/json api file?

@MartinDelille
Copy link
Contributor Author

@etherealjoy Not yet but I'm planning too. Unfortunately I have a blocking issue there: #7802

@@ -38,13 +38,13 @@ public:

void cleanup();

String asJson ();
String asJson () override;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I dont think this file is actually needed, it doesnt use anything from QT and has a tizen namespace defined. Can you try generating a qt client without this mustache file? (Also remove it from the java file, if necessary)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes indeed. I just removed it.

@wing328 wing328 added this to the v2.4.0 milestone Mar 12, 2018
@wing328 wing328 merged commit 9bd94b4 into swagger-api:master Mar 12, 2018
@wing328 wing328 changed the title [qt] Fix warning message [C++][qt] Fix warning message Mar 12, 2018
@wing328
Copy link
Contributor

wing328 commented Mar 12, 2018

@MartinDelille thanks for the PR, which has been merged into master.

Thanks @etherealjoy @stkrwork for reviewing the change.

@MartinDelille MartinDelille deleted the qt-fix-warning-message branch March 12, 2018 15:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants