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
Phillip Lino Rall
UGBlocks_V3
Commits
3bef485f
Commit
3bef485f
authored
Sep 02, 2020
by
Christoph Pflaum
Browse files
constructore template correct
parent
06fdebff
Changes
1
Hide whitespace changes
Inline
Side-by-side
program/source/math_lib/mg_array.h
View file @
3bef485f
...
...
@@ -32,8 +32,8 @@ template <class T>
class
MG_array
{
public:
MG_array
(
int
l
);
MG_array
(
const
MG_array
org
)
{
assert
(
false
);
}
MG_array
(
MG_array
org
)
{
assert
(
false
);
}
template
<
class
U
>
MG_array
(
const
MG_array
<
U
>
org
)
{
assert
(
false
);
}
template
<
class
U
>
MG_array
(
MG_array
<
U
>
org
)
{
assert
(
false
);
}
~
MG_array
();
Set_MG_array
<
T
>
operator
()
(
int
i
);
T
&
operator
[]
(
int
i
);
...
...
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