Skip to content

Commit

Permalink
Update kgt version
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurSonzogni committed May 4, 2023
1 parent ec68533 commit 30b9f02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/translator/grammar/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ else()
set(FETCHCONTENT_UPDATES_DISCONNECTED TRUE)
FetchContent_Declare(kgt
GIT_REPOSITORY https://github.com/ArthurSonzogni/kgt
GIT_TAG c2af649438583e0ec5a97b83b5be6f1824b21a2a
GIT_TAG 56c3f46cf286051096d9295118c048219fe0d776
)
FetchContent_GetProperties(kgt)
FetchContent_Populate(kgt)
Expand Down
2 changes: 1 addition & 1 deletion src/translator/grammar/Grammar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ std::string Grammar::Translate(const std::string& input,
error_count++;
kgt::parsing_error error;
parsing_error_queue_pop(&parsing_errors, &error);
std::cout << error.line << ":" << error.column << ":" << error.description
std::cout << error.line << ":" << error.col << ":" << error.description
<< std::endl;
}

Expand Down

0 comments on commit 30b9f02

Please sign in to comment.