diff options
Diffstat (limited to 'src/mark_sweep.cc')
| -rw-r--r-- | src/mark_sweep.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mark_sweep.cc b/src/mark_sweep.cc index 5ab9e3eea5..d2e7b66eff 100644 --- a/src/mark_sweep.cc +++ b/src/mark_sweep.cc @@ -1,13 +1,13 @@ // Copyright 2011 Google Inc. All Rights Reserved. // Author: cshapiro@google.com (Carl Shapiro) -#include "src/mark_sweep.h" +#include "mark_sweep.h" -#include "src/logging.h" -#include "src/macros.h" -#include "src/mark_stack.h" -#include "src/object.h" -#include "src/thread.h" +#include "logging.h" +#include "macros.h" +#include "mark_stack.h" +#include "object.h" +#include "thread.h" #define CLZ(x) __builtin_clz(x) |