summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNicolas Despres <nicolas.despres@gmail.com>2011-11-19 19:22:42 (GMT)
committerNicolas Despres <nicolas.despres@gmail.com>2011-11-19 19:22:42 (GMT)
commitccdef45a2a5af30f897c107062e5939c3be4371f (patch)
tree2d00be1a8ddbbc48bb7a2b747d5ba64abed6e638 /src
parent73b24b00cc670b2f879d1468fac3670158e42255 (diff)
downloadNinja-ccdef45a2a5af30f897c107062e5939c3be4371f.zip
Ninja-ccdef45a2a5af30f897c107062e5939c3be4371f.tar.gz
Ninja-ccdef45a2a5af30f897c107062e5939c3be4371f.tar.bz2
Remove warning triggered by -Wextra on MinGW.
Diffstat (limited to 'src')
-rw-r--r--src/build.cc2
-rw-r--r--src/ninja.cc4
-rw-r--r--src/subprocess-win32.cc2
-rw-r--r--src/util.cc3
-rw-r--r--src/util.h2
5 files changed, 11 insertions, 2 deletions
diff --git a/src/build.cc b/src/build.cc
index 332a70f..1686eed 100644
--- a/src/build.cc
+++ b/src/build.cc
@@ -163,6 +163,8 @@ void BuildStatus::PrintStatus(Edge* edge) {
}
}
}
+#else
+ NINJA_UNUSED_ARG(progress_chars);
#endif
printf("%s", to_print.c_str());
diff --git a/src/ninja.cc b/src/ninja.cc
index 6034f87..8125c98 100644
--- a/src/ninja.cc
+++ b/src/ninja.cc
@@ -247,6 +247,10 @@ int CmdBrowse(State* state, const char* ninja_command,
}
RunBrowsePython(state, ninja_command, argv[0]);
#else
+ NINJA_UNUSED_ARG(state);
+ NINJA_UNUSED_ARG(ninja_command);
+ NINJA_UNUSED_ARG(argc);
+ NINJA_UNUSED_ARG(argv);
Error("browse mode not yet supported on Windows");
#endif
// If we get here, the browse failed.
diff --git a/src/subprocess-win32.cc b/src/subprocess-win32.cc
index 6e5ebab..f331337 100644
--- a/src/subprocess-win32.cc
+++ b/src/subprocess-win32.cc
@@ -90,7 +90,7 @@ HANDLE Subprocess::SetupPipe(HANDLE ioport) {
bool Subprocess::Start(SubprocessSet* set, const string& command) {
HANDLE child_pipe = SetupPipe(set->ioport_);
- STARTUPINFOA startup_info = {};
+ STARTUPINFOA startup_info;
startup_info.cb = sizeof(STARTUPINFO);
startup_info.dwFlags = STARTF_USESTDHANDLES;
startup_info.hStdOutput = child_pipe;
diff --git a/src/util.cc b/src/util.cc
index 0bbcaf2..e8cd11e 100644
--- a/src/util.cc
+++ b/src/util.cc
@@ -173,7 +173,8 @@ void SetCloseOnExec(int fd) {
#else
// On Windows, handles must be explicitly marked to be passed to a
// spawned process, so there's nothing to do here.
-#endif // WIN32
+ NINJA_UNUSED_ARG(fd);
+#endif // ! _WIN32
}
int64_t GetTimeMillis() {
diff --git a/src/util.h b/src/util.h
index 40b519e..d36e2e1 100644
--- a/src/util.h
+++ b/src/util.h
@@ -21,6 +21,8 @@
#include <string>
using namespace std;
+#define NINJA_UNUSED_ARG(arg_name) (void)arg_name;
+
/// Log a fatal message and exit.
void Fatal(const char* msg, ...);