diff options
author | Evan Martin <martine@danga.com> | 2011-09-09 18:38:37 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2011-09-09 18:38:37 (GMT) |
commit | 531c5e5bef4ef26d7456c462673435402697d7b8 (patch) | |
tree | d02f78542dd845fac53d3f225bee4fa852d74bb7 | |
parent | 00997c1c56d26a7a73c7447c99350e834e93ced5 (diff) | |
parent | 86b407a686f39caec642da59f32930846440ec76 (diff) | |
download | Ninja-531c5e5bef4ef26d7456c462673435402697d7b8.zip Ninja-531c5e5bef4ef26d7456c462673435402697d7b8.tar.gz Ninja-531c5e5bef4ef26d7456c462673435402697d7b8.tar.bz2 |
Merge pull request #101 from tfarina/build-config-reference
Make Cleaner::config_ a reference-to-const instead of copying the value.
-rw-r--r-- | src/clean.cc | 1 | ||||
-rw-r--r-- | src/clean.h | 9 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/clean.cc b/src/clean.cc index 16ca5e5..d22ac59 100644 --- a/src/clean.cc +++ b/src/clean.cc @@ -20,7 +20,6 @@ #include <string.h> #include <sys/stat.h> -#include "build.h" #include "disk_interface.h" #include "graph.h" #include "state.h" diff --git a/src/clean.h b/src/clean.h index 9961658..ab606f4 100644 --- a/src/clean.h +++ b/src/clean.h @@ -14,15 +14,16 @@ #ifndef NINJA_CLEAN_H_ #define NINJA_CLEAN_H_ +#pragma once + +#include <set> +#include <string> #include "build.h" -#include <string> -#include <set> using namespace std; struct State; -struct BuildConfig; struct Node; struct Rule; struct DiskInterface; @@ -92,7 +93,7 @@ class Cleaner { void Reset(); State* state_; - BuildConfig config_; + const BuildConfig& config_; set<string> removed_; int cleaned_files_count_; DiskInterface* disk_interface_; |