Browse Source

Projucer: Removed a duplicate check in VersionInfo::isNewerVersionThanCurrent()

tags/2021-05-28
ed 5 years ago
parent
commit
1746d7bc4d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Utility/Helpers/jucer_VersionInfo.cpp

+ 1
- 1
extras/Projucer/Source/Utility/Helpers/jucer_VersionInfo.cpp View File

@@ -60,7 +60,7 @@ bool VersionInfo::isNewerVersionThanCurrent()
auto currentTokens = StringArray::fromTokens (ProjectInfo::versionString, ".", {});
auto thisTokens = StringArray::fromTokens (versionString, ".", {});
jassert (thisTokens.size() == 3 && thisTokens.size() == 3);
jassert (thisTokens.size() == 3);
if (currentTokens[0].getIntValue() == thisTokens[0].getIntValue())
{


Loading…
Cancel
Save