aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/cpp/blaze_util.h
diff options
context:
space:
mode:
authorGravatar Nathan Harmata <nharmata@google.com>2016-03-11 17:36:44 +0000
committerGravatar David Chen <dzc@google.com>2016-03-11 21:29:43 +0000
commit5053a80a83cdba21fa8515f873a42a4b8b68e6f4 (patch)
tree4c60566957573c6ae4a003445c57409fed1215f5 /src/main/cpp/blaze_util.h
parent7aa72a0a126c7fd6b54517b2a9f95b2cc6f1d50e (diff)
Remove unused declared function AddJVMSpecificArguments.
Kudos to @tfarina for pointing out this dead function declaration. An older commit (prior to bazel being open sourced) moved the file out of blaze_util.cc but forgot to delete the function declaration from the header file. And a subsequent change (also before bazel was open sourced) renamed/moved the implementation to a place that is now internal-only. -- MOS_MIGRATED_REVID=116980458
Diffstat (limited to 'src/main/cpp/blaze_util.h')
-rw-r--r--src/main/cpp/blaze_util.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/cpp/blaze_util.h b/src/main/cpp/blaze_util.h
index 4a5a3ce59e..9222734e7b 100644
--- a/src/main/cpp/blaze_util.h
+++ b/src/main/cpp/blaze_util.h
@@ -66,10 +66,6 @@ bool IsStandardTerminal();
// connected, or 80 if there is no such terminal.
int GetTerminalColumns();
-// Adds JVM arguments particular to running blaze with JVM v3 or higher.
-void AddJVMSpecificArguments(const string &host_javabase,
- std::vector<string> *result);
-
// If 'arg' matches 'key=value', returns address of 'value'.
// If it matches 'key' alone, returns address of next_arg.
// Returns NULL otherwise.