From a46abb1011cbf99bf9752bc440246dd5c1cb5a9a Mon Sep 17 00:00:00 2001 From: Thiago Farina Date: Sat, 28 Apr 2012 15:21:37 -0300 Subject: [PATCH] Put & operator with the type rather than the variable name. Signed-off-by: Thiago Farina --- src/disk_interface.cc | 2 +- src/disk_interface.h | 4 ++-- src/disk_interface_test.cc | 2 +- src/subprocess-win32.cc | 2 +- src/subprocess.cc | 2 +- src/subprocess.h | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/disk_interface.cc b/src/disk_interface.cc index 5a36685..74f33c4 100644 --- a/src/disk_interface.cc +++ b/src/disk_interface.cc @@ -103,7 +103,7 @@ TimeStamp RealDiskInterface::Stat(const string& path) { #endif } -bool RealDiskInterface::WriteFile(const string & path, const string & contents) { +bool RealDiskInterface::WriteFile(const string& path, const string& contents) { FILE * fp = fopen(path.c_str(), "w"); if (fp == NULL) { Error("WriteFile(%s): Unable to create file. %s", path.c_str(), strerror(errno)); diff --git a/src/disk_interface.h b/src/disk_interface.h index c0f5ee5..55f8a21 100644 --- a/src/disk_interface.h +++ b/src/disk_interface.h @@ -36,7 +36,7 @@ struct DiskInterface { /// Create a file, with the specified name and contents /// Returns true on success, false on failure - virtual bool WriteFile(const string & path, const string & contents) = 0; + virtual bool WriteFile(const string& path, const string& contents) = 0; /// Read a file to a string. Fill in |err| on error. virtual string ReadFile(const string& path, string* err) = 0; @@ -58,7 +58,7 @@ struct RealDiskInterface : public DiskInterface { virtual ~RealDiskInterface() {} virtual TimeStamp Stat(const string& path); virtual bool MakeDir(const string& path); - virtual bool WriteFile(const string & path, const string & contents); + virtual bool WriteFile(const string& path, const string& contents); virtual string ReadFile(const string& path, string* err); virtual int RemoveFile(const string& path); }; diff --git a/src/disk_interface_test.cc b/src/disk_interface_test.cc index 9e460c5..985e991 100644 --- a/src/disk_interface_test.cc +++ b/src/disk_interface_test.cc @@ -107,7 +107,7 @@ struct StatTest : public StateTestWithBuiltinRules, public DiskInterface { // DiskInterface implementation. virtual TimeStamp Stat(const string& path); - virtual bool WriteFile(const string& path, const string & contents) { + virtual bool WriteFile(const string& path, const string& contents) { assert(false); return true; } diff --git a/src/subprocess-win32.cc b/src/subprocess-win32.cc index fef0bc8..7842114 100644 --- a/src/subprocess-win32.cc +++ b/src/subprocess-win32.cc @@ -207,7 +207,7 @@ BOOL WINAPI SubprocessSet::NotifyInterrupted(DWORD dwCtrlType) { return FALSE; } -Subprocess *SubprocessSet::Add(const string &command) { +Subprocess *SubprocessSet::Add(const string& command) { Subprocess *subprocess = new Subprocess; if (!subprocess->Start(this, command)) { delete subprocess; diff --git a/src/subprocess.cc b/src/subprocess.cc index 25b1bda..0d240b1 100644 --- a/src/subprocess.cc +++ b/src/subprocess.cc @@ -172,7 +172,7 @@ SubprocessSet::~SubprocessSet() { Fatal("sigprocmask: %s", strerror(errno)); } -Subprocess *SubprocessSet::Add(const string &command) { +Subprocess *SubprocessSet::Add(const string& command) { Subprocess *subprocess = new Subprocess; if (!subprocess->Start(this, command)) { delete subprocess; diff --git a/src/subprocess.h b/src/subprocess.h index 3294416..4c1629c 100644 --- a/src/subprocess.h +++ b/src/subprocess.h @@ -75,7 +75,7 @@ struct SubprocessSet { SubprocessSet(); ~SubprocessSet(); - Subprocess *Add(const string &command); + Subprocess* Add(const string& command); bool DoWork(); Subprocess* NextFinished(); void Clear(); -- 2.7.4