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
b8d304a4
Commit
b8d304a4
authored
Nov 25, 2015
by
Janis Born
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use correct ifdefs for VS2015
parent
79ce0a7b
Pipeline
#129
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/Python/Vector.hh
src/Python/Vector.hh
+1
-1
No files found.
src/Python/Vector.hh
View file @
b8d304a4
...
...
@@ -148,7 +148,7 @@ void expose_vec(const char *_name) {
.
def
(
"vectorize"
,
&
Vector
::
vectorize
,
return_internal_reference
<>
())
.
def
(
self
<
self
)
#if (__cplusplus > 199711L || defined(__GXX_EXPERIMENTAL_CXX0X__)) && !defined(OPENMESH_VECTOR_LEGACY)
#if (
_MSC_VER >= 1900 ||
__cplusplus > 199711L || defined(__GXX_EXPERIMENTAL_CXX0X__)) && !defined(OPENMESH_VECTOR_LEGACY)
.
def
(
"norm"
,
&
Vector
::
template
norm
<
Scalar
>)
.
def
(
"length"
,
&
Vector
::
template
length
<
Scalar
>)
.
def
(
"sqrnorm"
,
&
Vector
::
template
sqrnorm
<
Scalar
>)
...
...
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