Clean the project (#57)

This commit is contained in:
ykiko
2025-02-05 14:10:11 +08:00
committed by GitHub
parent 9b98354918
commit 2f9622bca7
71 changed files with 1521 additions and 742 deletions

View File

@@ -2,9 +2,9 @@
#include <string>
#include <vector>
#include <expected>
#include "Support/Struct.h"
#include "Support/Error.h"
namespace clice {
@@ -41,8 +41,6 @@ std::string scanModuleName(CompilationParams& params);
/// Run the preprocessor to scan the given module unit to
/// collect its module name and dependencies.
llvm::Expected<ModuleInfo> scanModule(CompilationParams& params);
std::expected<ModuleInfo, std::string> scanModule(CompilationParams& params);
} // namespace clice