Commit b2d50bd6 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Remove empty code.h file

parent 798c4da8
......@@ -35,7 +35,6 @@
#include "core/stats.h"
#include "core/types.h"
#include "runtime/classobj.h"
#include "runtime/code.h"
#include "runtime/complex.h"
#include "runtime/dict.h"
#include "runtime/hiddenclass.h"
......
......@@ -25,6 +25,7 @@ def verify_include_guard(_, dir, files):
with open(fn) as f:
while True:
l = f.readline()
assert l, "Did not find include guard in " + fn
if l.startswith('//') or not l.strip():
continue
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