Commit b2d50bd6 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Remove empty code.h file

parent 798c4da8
...@@ -35,7 +35,6 @@ ...@@ -35,7 +35,6 @@
#include "core/stats.h" #include "core/stats.h"
#include "core/types.h" #include "core/types.h"
#include "runtime/classobj.h" #include "runtime/classobj.h"
#include "runtime/code.h"
#include "runtime/complex.h" #include "runtime/complex.h"
#include "runtime/dict.h" #include "runtime/dict.h"
#include "runtime/hiddenclass.h" #include "runtime/hiddenclass.h"
......
...@@ -25,6 +25,7 @@ def verify_include_guard(_, dir, files): ...@@ -25,6 +25,7 @@ def verify_include_guard(_, dir, files):
with open(fn) as f: with open(fn) as f:
while True: while True:
l = f.readline() l = f.readline()
assert l, "Did not find include guard in " + fn
if l.startswith('//') or not l.strip(): if l.startswith('//') or not l.strip():
continue continue
break break
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment