Skip to content

Commit

Permalink
preproc: Minor coding style nitpick
Browse files Browse the repository at this point in the history
  • Loading branch information
irydacea committed Jul 30, 2015
1 parent d7686f4 commit b650686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serialization/preprocessor.cpp
Expand Up @@ -1075,7 +1075,7 @@ bool preprocessor_data::get_chunk()
size_t nb_arg = strings_.size() - token.stack_pos - 1;
if (nb_arg != val.arguments.size())
{
std::vector< std::string > locations = utils::quoted_split(val.location, ' ');
const std::vector<std::string>& locations = utils::quoted_split(val.location, ' ');
std::ostringstream error;
error << "Preprocessor symbol '" << symbol << "' defined at "
<< get_filename(locations[0]) << ":" << val.linenum << " expects "
Expand Down

0 comments on commit b650686

Please sign in to comment.