Skip to content

Commit

Permalink
Run expansive assert only in dev builds
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOneRing authored and mgallien committed Jun 1, 2021
1 parent d88298c commit 2431b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/filesystembase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ bool FileSystem::isJunction(const QString &filename)
#ifdef Q_OS_WIN
QString FileSystem::pathtoUNC(const QString &_str)
{
ASSERT(QFileInfo(_str).isAbsolute());
Q_ASSERT(QFileInfo(_str).isAbsolute());
if (_str.isEmpty()) {
return _str;
}
Expand Down

0 comments on commit 2431b3c

Please sign in to comment.