-
Notifications
You must be signed in to change notification settings - Fork 327
Fix a handful of compiler warnings #488
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4bb39d0
Construct command objects from const strings
markuspg d00ea43
Check `pos` validity before accessing character
markuspg 2b1c904
Make function parameters const where possible
markuspg 7789014
Fix faulty function arguments
markuspg 8da2e8b
Add missing `override` specifiers
markuspg 7699cc0
Avoid returning uninitialized value and reduce scope
markuspg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,7 +56,7 @@ static string g_cmd_list_file; | |
|
|
||
| static map<thread::id, map<string, string>> g_environment; | ||
|
|
||
| int insert_env_variable(string key, string value) | ||
| int insert_env_variable(const string &key, const string &value) | ||
| { | ||
| g_environment[std::this_thread::get_id()][key] = value; | ||
| return 0; | ||
|
|
@@ -253,7 +253,6 @@ int CmdBase::dump() | |
| int CmdList::run_all(CmdCtx *p, bool dry) | ||
| { | ||
| CmdList::iterator it; | ||
| int ret; | ||
|
|
||
| uuu_notify nt; | ||
| nt.type = uuu_notify::NOTIFY_CMD_TOTAL; | ||
|
|
@@ -262,6 +261,7 @@ int CmdList::run_all(CmdCtx *p, bool dry) | |
|
|
||
| int i = 0; | ||
|
|
||
| int ret = -1; | ||
| for (it = begin(); it != end(); it++, i++) | ||
| { | ||
| uuu_notify nt; | ||
|
|
@@ -314,7 +314,7 @@ string get_next_param(const string &cmd, size_t &pos, char separate) | |
| return str; | ||
|
|
||
| //trim left space | ||
| while (cmd[pos] == separate && pos < cmd.size()) | ||
| while (pos < cmd.size() && cmd[pos] == separate) | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LLVM rightly hinted that |
||
| pos++; | ||
|
|
||
| bool quote = false; | ||
|
|
@@ -496,7 +496,7 @@ CmdObjCreateMap::CmdObjCreateMap() | |
|
|
||
| } | ||
|
|
||
| shared_ptr<CmdBase> create_cmd_obj(string cmd) | ||
| shared_ptr<CmdBase> create_cmd_obj(const string &cmd) | ||
| { | ||
| string param; | ||
| size_t pos = 0; | ||
|
|
@@ -828,7 +828,7 @@ int CmdIf::parser(char *p) | |
| { | ||
| string err = "Unknown command: "; | ||
| err += s; | ||
| set_last_err_string(s); | ||
| set_last_err_string(err); | ||
| return -1; | ||
| } | ||
| size_t lc = pos; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(In theory)
retcould return an uninitialized value. To avoid this it is initialized explicitly and for following best practises its scope is being reduced additionally.