diff options
author | David Robillard <d@drobilla.net> | 2020-07-18 11:54:31 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-18 11:54:31 +0200 |
commit | cd07449e306366fe8cc881b469d9a97b17c0c22e (patch) | |
tree | ff3dee2b1eab1d5ce38fbc9daac46249b2d0e234 /src | |
parent | 662bcbc0eceab2c3d4013efbd99861e451c8cf3b (diff) | |
download | ganv-cd07449e306366fe8cc881b469d9a97b17c0c22e.tar.gz ganv-cd07449e306366fe8cc881b469d9a97b17c0c22e.tar.bz2 ganv-cd07449e306366fe8cc881b469d9a97b17c0c22e.zip |
Add missing static specifiers
Diffstat (limited to 'src')
-rw-r--r-- | src/ganv_bench.cpp | 4 |
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) |