Add missing include guards.

llvm-svn: 232078
This commit is contained in:
Yaron Keren 2015-03-12 18:39:54 +00:00
parent 5f86f216c3
commit 93f2934cef
1 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,9 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIB_DEBUGINFO_DWARFACCELERATORTABLE_H
#define LLVM_LIB_DEBUGINFO_DWARFACCELERATORTABLE_H
#include "llvm/ADT/SmallVector.h"
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
@ -47,3 +50,5 @@ public:
};
}
#endif