summaryrefslogtreecommitdiff
path: root/libs/ardour/vst_info_file.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-03-05 08:47:54 +0100
committerRobin Gareus <robin@gareus.org>2014-03-05 08:47:54 +0100
commitf3300ec03ce82628aa4eb57565b1c05acb2915e9 (patch)
tree30e5f17ecf1a1f88b628967853cb05d764b81911 /libs/ardour/vst_info_file.cc
parentdd1c397344d8b175bd1cffdf5b6be464cc788bdd (diff)
move vst detection code into ARDOUR namespace
Diffstat (limited to 'libs/ardour/vst_info_file.cc')
-rw-r--r--libs/ardour/vst_info_file.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/libs/ardour/vst_info_file.cc b/libs/ardour/vst_info_file.cc
index 34e1b0ed0c..acb2d66579 100644
--- a/libs/ardour/vst_info_file.cc
+++ b/libs/ardour/vst_info_file.cc
@@ -65,6 +65,9 @@
using namespace std;
+#ifndef VST_SCANNER_APP
+namespace ARDOUR {
+#endif
/* prototypes */
#ifdef WINDOWS_VST_SUPPORT
@@ -1010,3 +1013,7 @@ vstfx_get_info_fst (char* dllpath, enum VSTScanMode mode)
return vstfx_get_info(dllpath, ARDOUR::Windows_VST, mode);
}
#endif
+
+#ifndef VST_SCANNER_APP
+} // namespace
+#endif