完成 Error定义和ErrorLog. 以及一些相关的东西
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <unordered_map>
|
||||
|
||||
namespace Fig::Deps
|
||||
{
|
||||
template <class _Key,
|
||||
class _Tp,
|
||||
class _Hash = std::hash<_Key>,
|
||||
class _Pred = std::equal_to<_Key>,
|
||||
class _Alloc = std::allocator<std::pair<const _Key, _Tp> >>
|
||||
using HashMap = std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>;
|
||||
};
|
||||
Reference in New Issue
Block a user