summaryrefslogtreecommitdiffstats
path: root/ingen/Forge.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
commit394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (patch)
tree1c079badda98cb366d72d59aabcb68fcc38760cf /ingen/Forge.hpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'ingen/Forge.hpp')
-rw-r--r--ingen/Forge.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ingen/Forge.hpp b/ingen/Forge.hpp
index 77f399c8..139211e4 100644
--- a/ingen/Forge.hpp
+++ b/ingen/Forge.hpp
@@ -25,7 +25,7 @@
#include "ingen/ingen.h"
#include "lv2/atom/forge.h"
-namespace Ingen {
+namespace ingen {
class URIMap;
class URI;
@@ -53,7 +53,7 @@ public:
Atom make_urid(int32_t v) { return Atom(sizeof(int32_t), URID, &v); }
- Atom make_urid(const Ingen::URI& u);
+ Atom make_urid(const ingen::URI& u);
Atom alloc(uint32_t size, uint32_t type, const void* val) {
return Atom(size, type, val);
@@ -81,6 +81,6 @@ private:
URIMap& _map;
};
-} // namespace Ingen
+} // namespace ingen
#endif // INGEN_FORGE_HPP