Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: src/shared/assert.cc

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/shared/assert.h ('k') | src/shared/atomic.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/assert.cc
diff --git a/src/shared/assert.cc b/src/shared/assert.cc
index 3fb485d8a432cf07a266631b2e43b8a9446a2656..9e9b8f768eb68f191ecf9e025ece2113581e374b 100644
--- a/src/shared/assert.cc
+++ b/src/shared/assert.cc
@@ -10,12 +10,12 @@
#include "src/shared/utils.h"
#include "src/shared/platform.h"
-namespace fletch {
+namespace dartino {
namespace DynamicAssertionHelper {
static void PrintError(const char* file, int line, const char* format,
const va_list& arguments) {
-#ifdef FLETCH_ENABLE_PRINT_INTERCEPTORS
+#ifdef DARTINO_ENABLE_PRINT_INTERCEPTORS
// Print out the error.
Print::Error("%s:%d: error: ", file, line);
char buffer[KB];
@@ -25,7 +25,7 @@ static void PrintError(const char* file, int line, const char* format,
fprintf(stderr, "%s:%d: error: ", file, line);
vfprintf(stderr, format, const_cast<va_list&>(arguments));
fprintf(stderr, "\n");
-#endif // FLETCH_SUPPORT_PRINT_INTERCEPTORS
+#endif // DARTINO_SUPPORT_PRINT_INTERCEPTORS
}
template <>
@@ -47,4 +47,4 @@ void Fail<EXPECT>(const char* file, int line, const char* format, ...) {
}
} // namespace DynamicAssertionHelper
-} // namespace fletch
+} // namespace dartino
« no previous file with comments | « src/shared/assert.h ('k') | src/shared/atomic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698