]> git.tdb.fi Git - libs/core.git/blobdiff - source/mode.h
Style update: spaces around assignments
[libs/core.git] / source / mode.h
index c58ecb0bd55894474b5b828859a7ea9939d5bef0..d807e5f7b7a865eaad8017c165284c816f6bd49c 100644 (file)
@@ -12,12 +12,12 @@ namespace IO {
 
 enum Mode
 {
-       M_NONE=0,
-       M_READ=1,
-       M_WRITE=2,
-       M_RDWR=M_READ|M_WRITE,
-       M_APPEND=4,
-       M_NONBLOCK=8
+       M_NONE = 0,
+       M_READ = 1,
+       M_WRITE = 2,
+       M_RDWR = M_READ|M_WRITE,
+       M_APPEND = 4,
+       M_NONBLOCK = 8
 };
 
 inline Mode operator|(Mode m, Mode n)