Suuports clang compiler
[anna.git] / source / http / Method.cpp
index b9fe7dd..b6c202f 100644 (file)
@@ -46,7 +46,7 @@ anna_assign_enum(http::Method::Type) = {
 
 http::Method::Type::_v http::Method::asType(const http::Token* token)
 throw() {
-  for(register int ii = 0; anna_item_enum(http::Method::Type, ii) != NULL; ii ++) {
+  for(int ii = 0; anna_item_enum(http::Method::Type, ii) != NULL; ii ++) {
     if(token->match(anna_item_enum(http::Method::Type, ii)) == true)
       return (Type::_v) ii;
   }