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
OpenMesh
OpenMesh
Commits
b8d304a4
Commit
b8d304a4
authored
Nov 25, 2015
by
Janis Born
Browse files
use correct ifdefs for VS2015
parent
79ce0a7b
Pipeline
#129
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
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