Skip to content

Commit 2de794e

Browse files
authored
Merge pull request #161 from oblivioncth/dev
Merge to master for v0.7.0.2
2 parents 6b6eaa7 + 317ccf4 commit 2de794e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.23.0...3.31.0)
88
# avoided and only used for hotfixes. DON'T USE TRAILING
99
# ZEROS IN VERSIONS
1010
project(Qx
11-
VERSION 0.7.0.1
11+
VERSION 0.7.0.2
1212
LANGUAGES CXX
1313
DESCRIPTION "Qt Extensions Library"
1414
)

lib/sql/include/qx/sql/__private/qx-sqlstring_helpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void appendKeywordParen(QString& str, const QString& word, const R& range)
6262
* for ensuring that everything is quoted as required (or is a type that auto quotes) ahead of
6363
* time, and this may on occasion cause accidental double quoting.
6464
*/
65-
constexpr bool quote = std::constructible_from<QString, Qx::unwrap<R>>;
65+
constexpr bool quote = std::constructible_from<QString, Qx::unwrap_t<R>>;
6666
QString rStr;
6767
if constexpr(quote)
6868
rStr += u"'"_s;

0 commit comments

Comments
 (0)