summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThiago Farina <tfarina@chromium.org>2012-04-28 18:21:37 (GMT)
committerThiago Farina <tfarina@chromium.org>2012-04-28 18:24:57 (GMT)
commita46abb1011cbf99bf9752bc440246dd5c1cb5a9a (patch)
tree9434c76ccc10b5da7c6346077d8ceb9ef5933808 /src
parente3b98c7fe46d1ecfc6246b76fbc2282ad61c0afb (diff)
downloadNinja-a46abb1011cbf99bf9752bc440246dd5c1cb5a9a.zip
Ninja-a46abb1011cbf99bf9752bc440246dd5c1cb5a9a.tar.gz
Ninja-a46abb1011cbf99bf9752bc440246dd5c1cb5a9a.tar.bz2
Put & operator with the type rather than the variable name.
Signed-off-by: Thiago Farina <tfarina@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/disk_interface.cc2
-rw-r--r--src/disk_interface.h4
-rw-r--r--src/disk_interface_test.cc2
-rw-r--r--src/subprocess-win32.cc2
-rw-r--r--src/subprocess.cc2
-rw-r--r--src/subprocess.h2
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();