Fixing whitespace problems
llvm-svn: 111751
diff --git a/libcxx/src/system_error.cpp b/libcxx/src/system_error.cpp
index 1ca85cb..96881a4 100644
--- a/libcxx/src/system_error.cpp
+++ b/libcxx/src/system_error.cpp
@@ -67,7 +67,7 @@
#ifdef ELAST
if (ev > ELAST)
return string("unspecified generic_category error");
-#endif
+#endif // ELAST
return __do_message::message(ev);
}
@@ -99,7 +99,7 @@
#ifdef ELAST
if (ev > ELAST)
return string("unspecified system_category error");
-#endif
+#endif // ELAST
return __do_message::message(ev);
}
@@ -109,7 +109,7 @@
#ifdef ELAST
if (ev > ELAST)
return error_condition(ev, system_category());
-#endif
+#endif // ELAST
return error_condition(ev, generic_category());
}