Skip to content

Commit

Permalink
Squashed 'externals/nitro/' changes from 49f6338d2..e418beceb
Browse files Browse the repository at this point in the history
e418beceb Merge commit '6144b2cfb436a5696bab62c81651b47edf07aa8c'
6144b2cfb Squashed 'externals/coda-oss/' changes from 8dee6f7a68..c92a55d7c7
32d9c4fe4 latest from CODA-OSS

git-subtree-dir: externals/nitro
git-subtree-split: e418beceb503c1186119ea058211f1e5b493afc6
  • Loading branch information
Dan Smith committed Sep 12, 2023
1 parent a5674e7 commit 8041684
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,12 +278,9 @@ template<typename T> class BasicPluginManager

for (unsigned int i = 0; ops[i] != nullptr; i++)
oss << ops[i] << ":";
eh->onPluginVersionUnsupported(
str::Format("For plugin supporting ops %s version [%d.%d] not supported (%d.%d)",
oss.str().c_str(), majorVersion, minorVersion,
mMajorVersion, mMinorVersion
)
);
auto unsupported = FmtX("For plugin supporting ops %s version ", oss.str());
unsupported += FmtX("[%d.%d] not supported (%d.%d)", majorVersion, minorVersion, mMajorVersion, mMinorVersion);
eh->onPluginVersionUnsupported(unsupported);
return;
}

Expand Down

0 comments on commit 8041684

Please sign in to comment.