13 lines
228 B
C++
13 lines
228 B
C++
#pragma once
|
|
|
|
#include <llvm/Support/Path.h>
|
|
#include <llvm/Support/FileSystem.h>
|
|
#include <llvm/Support/MemoryBuffer.h>
|
|
|
|
namespace clice {
|
|
|
|
namespace fs = llvm::sys::fs;
|
|
namespace path = llvm::sys::path;
|
|
|
|
} // namespace clice
|