fix global string constants

This commit is contained in:
Michael Davidsaver
2018-10-04 20:56:12 -07:00
parent 605c172d3c
commit 48770f132f
2 changed files with 8 additions and 6 deletions

View File

@@ -8,6 +8,7 @@
#define epicsExportSharedSymbols
#include <pv/pvaVersion.h>
#include <pv/pvaConstants.h>
using std::stringstream;
using std::string;
@@ -15,9 +16,9 @@ using std::string;
namespace epics {
namespace pvAccess {
const std::string PVACCESS_DEFAULT_PROVIDER = "local";
const std::string PVACCESS_ALL_PROVIDERS = "<all>";
const std::string PVACCESS_DEBUG = "EPICS_PVA_DEBUG";
const std::string PVACCESS_DEFAULT_PROVIDER("local");
const std::string PVACCESS_ALL_PROVIDERS("<all>");
const std::string PVACCESS_DEBUG("EPICS_PVA_DEBUG");
Version::Version(std::string const & productName,
std::string const & implementationLangugage,