]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/clientprotocol.h
Fix a bunch of weird indentation and spacing issues.
[user/henk/code/inspircd.git] / include / clientprotocol.h
index 16f08a6f6a010e10ef9f65cde810bae405cb312a..decb2fcf496a69693513a6c71f5c63deca023cf4 100644 (file)
@@ -239,15 +239,17 @@ class ClientProtocol::Message : public ClientProtocol::MessageSource
                }
 
                Param(int, const char* s)
-                       : owned(true)
+                       : ptr(NULL)
+                       , owned(true)
                {
                        new(str) std::string(s);
                }
 
                Param(int, const std::string& s)
-                       : owned(true)
+                       : ptr(NULL)
+                       , owned(true)
                {
-                        new(str) std::string(s);
+                       new(str) std::string(s);
                }
 
                Param(const Param& other)