This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
scope-guard
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Braces added.
main
offa
8 years ago
parent
176180601d
commit
48384ec9e8
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
include/scope_guard_base.h
+ 1
- 1
include/scope_guard_base.h
View File
@@ -79,7 +79,7 @@ namespace detail
~scope_guard_base() noexcept(true)
{
if( m_execute_on_destruction == true && this->should_execute() == true )
if(
(
m_execute_on_destruction == true
)
&&
(
this->should_execute() == true
)
)
{
m_exitFunction();
}
Write
Preview
Loading…
Cancel
Save