12 lines
186 B
C++
12 lines
186 B
C++
#pragma once
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "clang/Basic/SourceLocation.h"
|
|
|
|
namespace clice::index {
|
|
|
|
template <typename T>
|
|
using Shared = llvm::DenseMap<clang::FileID, T>;
|
|
|
|
}
|