Consistently use quotes for LLVM includes.

This commit is contained in:
David Nadlinger
2013-02-07 17:59:09 +01:00
parent 6de735de31
commit 5616753768
5 changed files with 13 additions and 13 deletions

View File

@@ -20,9 +20,9 @@
#include <map>
#include <string>
#if LDC_LLVM_VER >= 302
#include <llvm/DebugInfo.h>
#include "llvm/DebugInfo.h"
#else
#include <llvm/Analysis/DebugInfo.h>
#include "llvm/Analysis/DebugInfo.h"
#endif
#endif