]> git.tdb.fi Git - libs/net.git/blobdiff - source/status.h
Style update: spaces around assignments
[libs/net.git] / source / status.h
index 0ea001d43e3487fe0324b475586c442592848e5c..c04262d600d794e1be113a536679627f73cf8088 100644 (file)
@@ -15,13 +15,13 @@ namespace Http {
 
 enum Status
 {
-       NONE=0,
-       OK=200,
-       BAD_REQUEST=400,
-       FORBIDDEN=403,
-       NOT_FOUND=404,
-       INTERNAL_ERROR=500,
-       NOT_IMPLEMENTED=501
+       NONE = 0,
+       OK = 200,
+       BAD_REQUEST = 400,
+       FORBIDDEN = 403,
+       NOT_FOUND = 404,
+       INTERNAL_ERROR = 500,
+       NOT_IMPLEMENTED = 501
 };
 
 extern std::ostream &operator<<(std::ostream &, Status);