| 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
|
|
|