Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
KCalc
Commits
d5103f49
Commit
d5103f49
authored
May 30, 2021
by
Laurent Montel
😁
Browse files
initialize boolean in header
parent
bc8eebb3
Changes
2
Hide whitespace changes
Inline
Side-by-side
stats.cpp
View file @
d5103f49
...
...
@@ -25,7 +25,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// Name: KStats
// Desc: constructor
//------------------------------------------------------------------------------
KStats
::
KStats
()
:
error_flag_
(
false
)
{
KStats
::
KStats
()
{
}
//------------------------------------------------------------------------------
...
...
stats.h
View file @
d5103f49
...
...
@@ -46,7 +46,7 @@ public:
private:
QVector
<
KNumber
>
data_
;
bool
error_flag_
;
bool
error_flag_
=
false
;
};
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment