Skip to content

Commit f11f6c1

Browse files
committed
style: fix warning of comp
1 parent 268bcd3 commit f11f6c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace {
4545
}
4646

4747
InitResult GoLanguageModule::Initialize(std::weak_ptr<IPlugifyProvider> provider, ModuleHandle /*module*/) {
48-
if (!(_provider = provider.lock())) {
48+
if (!((_provider = provider.lock()))) {
4949
return ErrorData{ "Provider not exposed" };
5050
}
5151

0 commit comments

Comments
 (0)