summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxim Kalaev <maximk@il.ibm.com>2012-10-14 18:40:46 (GMT)
committerMaxim Kalaev <maximk@il.ibm.com>2012-10-15 05:47:41 (GMT)
commit62b136315c6635a64f314dde78dbd8f1235eb306 (patch)
tree8b3a8af2c1c85dc1e9f3bfd97a85f2c163969c99
parent96e01852b3060f37f20784ee0941d13d8f592794 (diff)
downloadNinja-62b136315c6635a64f314dde78dbd8f1235eb306.zip
Ninja-62b136315c6635a64f314dde78dbd8f1235eb306.tar.gz
Ninja-62b136315c6635a64f314dde78dbd8f1235eb306.tar.bz2
build log: fixing parameter names
-rw-r--r--src/build_log.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/build_log.cc b/src/build_log.cc
index 28fcf88..235951f 100644
--- a/src/build_log.cc
+++ b/src/build_log.cc
@@ -91,13 +91,13 @@ uint64_t BuildLog::LogEntry::HashCommand(StringPiece command) {
return MurmurHash64A(command.str_, command.len_);
}
-BuildLog::LogEntry::LogEntry(const string& _output)
- : output(_output) {}
+BuildLog::LogEntry::LogEntry(const string& output)
+ : output(output) {}
-BuildLog::LogEntry::LogEntry(const string& _output, uint64_t _command_hash,
- int _start_time, int _end_time, TimeStamp _restat_mtime)
- : output(_output), command_hash(_command_hash),
- start_time(_start_time), end_time(_end_time), restat_mtime(_restat_mtime)
+BuildLog::LogEntry::LogEntry(const string& output, uint64_t command_hash,
+ int start_time, int end_time, TimeStamp restat_mtime)
+ : output(output), command_hash(command_hash),
+ start_time(start_time), end_time(end_time), restat_mtime(restat_mtime)
{}
BuildLog::BuildLog()