Minor style fixes, no behavior change.
authorNico Weber <nicolasweber@gmx.de>
Fri, 23 Aug 2013 19:20:55 +0000 (15:20 -0400)
committerNico Weber <nicolasweber@gmx.de>
Fri, 23 Aug 2013 19:20:55 +0000 (15:20 -0400)
src/build.h
src/build_log.cc
src/build_test.cc
src/disk_interface.cc
src/hash_map.h

index aa9651283bf406c0ed7d0031809174aa1b74b4c7..5b6c83cce118f6e0a1517ae3d703f21ca2386f4f 100644 (file)
@@ -51,7 +51,7 @@ struct Plan {
   Edge* FindWork();
 
   /// Returns true if there's more work to be done.
-  bool more_to_do() const { return (wanted_edges_ > 0) && (command_edges_ > 0); }
+  bool more_to_do() const { return wanted_edges_ > 0 && command_edges_ > 0; }
 
   /// Dumps the current state of the plan.
   void Dump();
index 1374bd068f81dc88dd753f9c445363aeab37116a..b92a06f14f3b99a589f77170d16fbbadde5dd32b 100644 (file)
@@ -54,7 +54,7 @@ uint64_t MurmurHash64A(const void* key, size_t len) {
   const uint64_t m = BIG_CONSTANT(0xc6a4a7935bd1e995);
   const int r = 47;
   uint64_t h = seed ^ (len * m);
-  const unsigned char * data = (const unsigned char *)key;
+  const unsigned char* data = (const unsigned char*)key;
   while (len >= 8) {
     uint64_t k;
     memcpy(&k, data, sizeof k);
index 94f3994d416e329f8c2c43c521473bff34ae99df..66d0954699f1816354e2b9bb5d0fd6d8d51fbb55 100644 (file)
@@ -1167,7 +1167,7 @@ TEST_F(BuildWithLogTest, RestatMissingInput) {
 
   // See that an entry in the logfile is created, capturing
   // the right mtime
-  BuildLog::LogEntry * log_entry = build_log_.LookupByOutput("out1");
+  BuildLog::LogEntry* log_entry = build_log_.LookupByOutput("out1");
   ASSERT_TRUE(NULL != log_entry);
   ASSERT_EQ(restat_mtime, log_entry->restat_mtime);
 
@@ -1338,7 +1338,7 @@ TEST_F(BuildWithLogTest, RspFileCmdLineChange) {
 
   // 3. Alter the entry in the logfile
   // (to simulate a change in the command line between 2 builds)
-  BuildLog::LogEntry * log_entry = build_log_.LookupByOutput("out");
+  BuildLog::LogEntry* log_entry = build_log_.LookupByOutput("out");
   ASSERT_TRUE(NULL != log_entry);
   ASSERT_NO_FATAL_FAILURE(AssertHash(
         "cat out.rsp > out;rspfile=Original very long command",
index ee3e99a3b987ad3c843b25be72d405e1b7b2acaa..3233144c893fc9d2c481e73447c5cecd0f939dbf 100644 (file)
@@ -121,7 +121,7 @@ TimeStamp RealDiskInterface::Stat(const string& path) {
 }
 
 bool RealDiskInterface::WriteFile(const string& path, const string& contents) {
-  FILE * fp = fopen(path.c_str(), "w");
+  FILE* fp = fopen(path.c_str(), "w");
   if (fp == NULL) {
     Error("WriteFile(%s): Unable to create file. %s",
           path.c_str(), strerror(errno));
index 919b6fc5d14da6815ec686e0dd96a24ce6eba690..c63aa88b97eb6cbd45ef2e06589ee763ab687d0c 100644 (file)
@@ -25,7 +25,7 @@ unsigned int MurmurHash2(const void* key, size_t len) {
   const unsigned int m = 0x5bd1e995;
   const int r = 24;
   unsigned int h = seed ^ len;
-  const unsigned char * data = (const unsigned char *)key;
+  const unsigned char* data = (const unsigned char*)key;
   while (len >= 4) {
     unsigned int k;
     memcpy(&k, data, sizeof k);