完成表达式Ast定义。修改了format文件
This commit is contained in:
@@ -8,20 +8,22 @@
|
||||
#pragma once
|
||||
|
||||
#include <Core/CoreInfos.hpp>
|
||||
#include <Deps/DynArray/DynArray.hpp>
|
||||
#include <Deps/HashMap/HashMap.hpp>
|
||||
#include <Deps/String/String.hpp>
|
||||
#include <Deps/String/CharUtils.hpp>
|
||||
#include <Deps/String/String.hpp>
|
||||
|
||||
#include <expected>
|
||||
|
||||
namespace Fig
|
||||
{
|
||||
#ifdef __FCORE_LINK_DEPS
|
||||
using Deps::String;
|
||||
using Deps::HashMap;
|
||||
using Deps::CharUtils;
|
||||
#ifdef __FCORE_LINK_DEPS
|
||||
using Deps::String;
|
||||
using Deps::HashMap;
|
||||
using Deps::CharUtils;
|
||||
using Deps::DynArray;
|
||||
|
||||
template<class _Tp, class _Err>
|
||||
using Result = std::expected<_Tp, _Err>;
|
||||
#endif
|
||||
};
|
||||
template <class _Tp, class _Err>
|
||||
using Result = std::expected<_Tp, _Err>;
|
||||
#endif
|
||||
}; // namespace Fig
|
||||
Reference in New Issue
Block a user