Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
OpenMesh
Commits
32d46c23
Commit
32d46c23
authored
Nov 25, 2015
by
Janis Born
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix linker error
parent
265ff391
Pipeline
#127
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
src/Python/Vector.hh
src/Python/Vector.hh
+1
-4
No files found.
src/Python/Vector.hh
View file @
32d46c23
...
...
@@ -66,9 +66,6 @@ struct Factory {
};
}
template
<
class
Scalar
,
int
N
>
void
defInitMod
(
class_
<
OpenMesh
::
VectorT
<
Scalar
,
N
>
>
&
classVector
);
template
<
class
Scalar
>
void
defInitMod
(
class_
<
OpenMesh
::
VectorT
<
Scalar
,
2
>
>
&
classVector
)
{
classVector
...
...
@@ -189,7 +186,7 @@ void expose_vec(const char *_name) {
.
staticmethod
(
"vectorized"
)
;
defInitMod
<
Scalar
,
N
>
(
classVector
);
defInitMod
<
Scalar
>
(
classVector
);
}
}
// namespace OpenMesh
...
...
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