summaryrefslogtreecommitdiffstats
path: root/include/raul/Socket.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 17:58:58 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 17:58:58 +0100
commit45a608b57f75a6e1f1d8f33a6423da5d4947502b (patch)
treede315f0e39b2d32697d44c4018b934e1f582fc73 /include/raul/Socket.hpp
parent045ba07debf32f643f5af7a3a4ee794f226ed22e (diff)
downloadraul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.tar.gz
raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.tar.bz2
raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.zip
Make namespace name lowercase
Diffstat (limited to 'include/raul/Socket.hpp')
-rw-r--r--include/raul/Socket.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/raul/Socket.hpp b/include/raul/Socket.hpp
index 7da3555..55d2f70 100644
--- a/include/raul/Socket.hpp
+++ b/include/raul/Socket.hpp
@@ -29,10 +29,10 @@
#include <string>
#include <utility>
-namespace Raul {
+namespace raul {
/** A safe and simple interface for UNIX or TCP sockets. */
-class Socket : public Raul::Noncopyable
+class Socket : public raul::Noncopyable
{
public:
enum class Type { UNIX, TCP };
@@ -254,6 +254,6 @@ Socket::shutdown() // NOLINT(readability-make-member-function-const)
}
}
-} // namespace Raul
+} // namespace raul
#endif // RAUL_SOCKET_HPP