summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-18 11:54:31 +0200
committerDavid Robillard <d@drobilla.net>2020-07-18 11:54:31 +0200
commitcd07449e306366fe8cc881b469d9a97b17c0c22e (patch)
treeff3dee2b1eab1d5ce38fbc9daac46249b2d0e234
parent662bcbc0eceab2c3d4013efbd99861e451c8cf3b (diff)
downloadganv-cd07449e306366fe8cc881b469d9a97b17c0c22e.tar.gz
ganv-cd07449e306366fe8cc881b469d9a97b17c0c22e.tar.bz2
ganv-cd07449e306366fe8cc881b469d9a97b17c0c22e.zip
Add missing static specifiers
-rw-r--r--src/ganv_bench.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ganv_bench.cpp b/src/ganv_bench.cpp
index b1bdefb..11fc44e 100644
--- a/src/ganv_bench.cpp
+++ b/src/ganv_bench.cpp
@@ -29,8 +29,8 @@ using namespace Ganv;
static const int MAX_NUM_PORTS = 16;
-vector<Node*> ins;
-vector<Node*> outs;
+static vector<Node*> ins;
+static vector<Node*> outs;
static Module*
make_module(Canvas* canvas)