Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kirill Terekhov
INMOST
Commits
4cb3532a
Commit
4cb3532a
authored
Mar 20, 2016
by
Kirill Terekhov
Browse files
Bug fix, performance optimization
parent
0eab4fea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Source/Headers/container.hpp
View file @
4cb3532a
...
...
@@ -231,6 +231,7 @@ namespace INMOST
{
free
(
m_arr
);
m_arr
=
NULL
;
m_size
=
0
;
}
if
(
other
.
m_arr
!=
NULL
)
{
...
...
Source/Headers/inmost_dense.h
View file @
4cb3532a
...
...
@@ -471,7 +471,7 @@ namespace INMOST
assert
(
i
*
m
+
j
<
n
*
m
);
//overflow check?
return
space
[
i
*
m
+
j
];
}
Var
operator
()(
enumerator
i
,
enumerator
j
)
const
const
Var
&
operator
()(
enumerator
i
,
enumerator
j
)
const
{
assert
(
i
>=
0
&&
i
<
n
);
assert
(
j
>=
0
&&
j
<
m
);
...
...
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