aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/cpp/blaze.cc
diff options
context:
space:
mode:
authorGravatar Thiago Farina <tfarina@chromium.org>2017-04-24 13:16:32 +0200
committerGravatar Vladimir Moskva <vladmos@google.com>2017-04-24 16:52:01 +0200
commitb605a248ebe9233d8b7c0a971c62a6883bb6f0bd (patch)
treef7db9f22af2512117abaa34c7eacf9602b6dff86 /src/main/cpp/blaze.cc
parentd281fa8eea17664a714bc6ff69d21b3fb5d7fe81 (diff)
cpp: remove unncessary function prototypes
It is not necessary to have these function declarations (prototypes) because they are declared+defined before they are actually called. Change-Id: I32d9ba82e056e368eecc553569231ad1174ad5e0 PiperOrigin-RevId: 154035760
Diffstat (limited to 'src/main/cpp/blaze.cc')
-rw-r--r--src/main/cpp/blaze.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main/cpp/blaze.cc b/src/main/cpp/blaze.cc
index 4a5f4680e3..1d58055603 100644
--- a/src/main/cpp/blaze.cc
+++ b/src/main/cpp/blaze.cc
@@ -77,9 +77,6 @@ using std::set;
using std::string;
using std::vector;
-static int GetServerPid(const string &server_dir);
-static void VerifyJavaVersionAndSetJvm();
-
// The following is a treatise on how the interaction between the client and the
// server works.
//