diff options
author | Retro <44505837+dankmolot@users.noreply.github.com> | 2024-03-12 03:13:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 09:13:01 +0800 |
commit | b1661cc294132bb89b16fccbc1a70ff8824eb002 (patch) | |
tree | 9c7966cabc7d217ec19aab7373a44d3f10b88d58 /src | |
parent | 5a57ffa3556a70561a0df7fd6125339b9383810e (diff) | |
download | yuescript-b1661cc294132bb89b16fccbc1a70ff8824eb002.tar.gz yuescript-b1661cc294132bb89b16fccbc1a70ff8824eb002.tar.bz2 yuescript-b1661cc294132bb89b16fccbc1a70ff8824eb002.zip |
Fixed undeclared specifier in yue_compiler.cpp (#163)
Diffstat (limited to 'src')
-rw-r--r-- | src/yuescript/yue_compiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuescript/yue_compiler.cpp b/src/yuescript/yue_compiler.cpp index 8583f02..c991733 100644 --- a/src/yuescript/yue_compiler.cpp +++ b/src/yuescript/yue_compiler.cpp | |||
@@ -9033,7 +9033,7 @@ private: | |||
9033 | } | 9033 | } |
9034 | #else // YUE_NO_MACRO | 9034 | #else // YUE_NO_MACRO |
9035 | if (importAllMacro) { | 9035 | if (importAllMacro) { |
9036 | throw CompileError("macro feature not supported"sv, import->target); | 9036 | throw CompileError("macro feature not supported"sv, importNode->target); |
9037 | } | 9037 | } |
9038 | #endif // YUE_NO_MACRO | 9038 | #endif // YUE_NO_MACRO |
9039 | if (newTab->items.empty()) { | 9039 | if (newTab->items.empty()) { |