Skip to content

Commit

Permalink
fix enable-if unop parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
HJfod committed Jan 19, 2025
1 parent e53f197 commit 315bf46
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Geode Changelog

## v4.2.1
* Fix settings `enable-if` parsing

## v4.2.0
* Implement gd::set for android (#1197, #1207)
* Log levels for console and file logging (#1208)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.0
4.2.1
1 change: 1 addition & 0 deletions loader/src/loader/SettingV3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ namespace enable_if_parsing {
std::string op;
if (auto peek = this->peekWord()) {
if (isUnOpWord(*peek)) {
(void)this->nextWord();
op = *peek;
}
}
Expand Down

0 comments on commit 315bf46

Please sign in to comment.