Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.23.0...3.31.0)
# avoided and only used for hotfixes. DON'T USE TRAILING
# ZEROS IN VERSIONS
project(Qx
VERSION 0.7.0.1
VERSION 0.7.0.2
LANGUAGES CXX
DESCRIPTION "Qt Extensions Library"
)
Expand Down
2 changes: 1 addition & 1 deletion lib/sql/include/qx/sql/__private/qx-sqlstring_helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void appendKeywordParen(QString& str, const QString& word, const R& range)
* for ensuring that everything is quoted as required (or is a type that auto quotes) ahead of
* time, and this may on occasion cause accidental double quoting.
*/
constexpr bool quote = std::constructible_from<QString, Qx::unwrap<R>>;
constexpr bool quote = std::constructible_from<QString, Qx::unwrap_t<R>>;
QString rStr;
if constexpr(quote)
rStr += u"'"_s;
Expand Down