make void test() static

This commit is contained in:
mrkraimer
2016-06-15 12:16:12 -04:00
parent b5e1341736
commit 349f7d0a58
3 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ static bool debug = false;
static int traceLevel = 0;
void test()
static void test()
{
StandardPVFieldPtr standardPVField = getStandardPVField();
string properties;

View File

@ -44,7 +44,7 @@ using namespace epics::pvDatabase;
static bool debug = false;
void test()
static void test()
{
PVDatabasePtr master = PVDatabase::getMaster();
testOk1(master.get()!=0);

View File

@ -42,7 +42,7 @@ using namespace epics::pvDatabase;
static bool debug = false;
void test()
static void test()
{
PVDatabasePtr master = PVDatabase::getMaster();
ChannelProviderLocalPtr channelProvider = getChannelProviderLocal();