Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
iMSTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ben Boeckel
iMSTK
Commits
5f9b0407
Commit
5f9b0407
authored
4 years ago
by
Andrew Wilson
Browse files
Options
Downloads
Patches
Plain Diff
BUG: Msvc2017 fixes
parent
bd7f3966
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/Common/imstkDataArray.h
+19
-10
19 additions, 10 deletions
Source/Common/imstkDataArray.h
Source/Common/imstkVecDataArray.h
+16
-10
16 additions, 10 deletions
Source/Common/imstkVecDataArray.h
with
35 additions
and
20 deletions
Source/Common/imstkDataArray.h
+
19
−
10
View file @
5f9b0407
...
...
@@ -44,10 +44,12 @@ public:
using
self_type
=
iterator
;
using
value_type
=
T
;
using
iterator_category
=
std
::
forward_iterator_tag
;
using
difference_type
=
int
;
using
difference_type
=
std
::
ptrdiff_t
;
using
pointer
=
T
*
;
using
reference
=
T
&
;
public:
iterator
(
value_type
*
ptr
)
:
ptr_
(
ptr
)
{
}
iterator
(
pointer
ptr
)
:
ptr_
(
ptr
)
{
}
self_type
operator
++
()
{
...
...
@@ -62,16 +64,16 @@ public:
return
*
this
;
}
value_type
&
operator
*
()
{
return
*
ptr_
;
}
reference
operator
*
()
{
return
*
ptr_
;
}
value_type
*
operator
->
()
{
return
ptr_
;
}
pointer
operator
->
()
{
return
ptr_
;
}
bool
operator
==
(
const
self_type
&
rhs
)
{
return
ptr_
==
rhs
.
ptr_
;
}
bool
operator
!=
(
const
self_type
&
rhs
)
{
return
ptr_
!=
rhs
.
ptr_
;
}
private
:
value_type
*
ptr_
;
pointer
ptr_
;
};
class
const_iterator
...
...
@@ -80,10 +82,12 @@ public:
using
self_type
=
const_iterator
;
using
value_type
=
T
;
using
iterator_category
=
std
::
forward_iterator_tag
;
using
difference_type
=
int
;
using
difference_type
=
std
::
ptrdiff_t
;
using
pointer
=
T
*
;
using
reference
=
T
&
;
public:
const_iterator
(
value_type
*
ptr
)
:
ptr_
(
ptr
)
{
}
const_iterator
(
pointer
ptr
)
:
ptr_
(
ptr
)
{
}
self_type
operator
++
()
{
...
...
@@ -94,16 +98,16 @@ public:
self_type
operator
++
(
int
junk
)
{
ptr_
++
;
return
*
this
;
}
const
value_type
&
operator
*
()
{
return
*
ptr_
;
}
const
reference
operator
*
()
{
return
*
ptr_
;
}
const
value_type
*
operator
->
()
{
return
ptr_
;
}
const
pointer
operator
->
()
{
return
ptr_
;
}
bool
operator
==
(
const
self_type
&
rhs
)
{
return
ptr_
==
rhs
.
ptr_
;
}
bool
operator
!=
(
const
self_type
&
rhs
)
{
return
ptr_
!=
rhs
.
ptr_
;
}
private
:
value_type
*
ptr_
;
pointer
ptr_
;
};
public
:
...
...
@@ -216,6 +220,11 @@ public:
}
}
///
/// \brief Fill the array with the specified value
///
inline
void
fill
(
const
T
&
val
)
{
std
::
fill_n
(
m_data
,
m_size
,
val
);
}
///
/// \brief Resize to current size
///
...
...
This diff is collapsed.
Click to expand it.
Source/Common/imstkVecDataArray.h
+
16
−
10
View file @
5f9b0407
...
...
@@ -45,10 +45,12 @@ public:
using
self_type
=
iterator
;
using
value_type
=
VecType
;
using
iterator_category
=
std
::
forward_iterator_tag
;
using
difference_type
=
int
;
using
difference_type
=
std
::
ptrdiff_t
;
using
pointer
=
VecType
*
;
using
reference
=
VecType
&
;
public:
iterator
(
value_type
*
ptr
)
:
ptr_
(
ptr
)
{
}
iterator
(
pointer
ptr
)
:
ptr_
(
ptr
)
{
}
self_type
operator
++
()
{
...
...
@@ -63,16 +65,16 @@ public:
return
*
this
;
}
value_type
&
operator
*
()
{
return
*
ptr_
;
}
reference
operator
*
()
{
return
*
ptr_
;
}
value_type
*
operator
->
()
{
return
ptr_
;
}
pointer
operator
->
()
{
return
ptr_
;
}
bool
operator
==
(
const
self_type
&
rhs
)
{
return
ptr_
==
rhs
.
ptr_
;
}
bool
operator
!=
(
const
self_type
&
rhs
)
{
return
ptr_
!=
rhs
.
ptr_
;
}
private
:
value_type
*
ptr_
;
pointer
ptr_
;
};
class
const_iterator
...
...
@@ -81,10 +83,12 @@ public:
using
self_type
=
const_iterator
;
using
value_type
=
VecType
;
using
iterator_category
=
std
::
forward_iterator_tag
;
using
difference_type
=
int
;
using
difference_type
=
std
::
ptrdiff_t
;
using
pointer
=
VecType
*
;
using
reference
=
VecType
&
;
public:
const_iterator
(
value_type
*
ptr
)
:
ptr_
(
ptr
)
{
}
const_iterator
(
pointer
ptr
)
:
ptr_
(
ptr
)
{
}
self_type
operator
++
()
{
...
...
@@ -95,16 +99,16 @@ public:
self_type
operator
++
(
int
junk
)
{
ptr_
++
;
return
*
this
;
}
const
value_type
&
operator
*
()
{
return
*
ptr_
;
}
const
reference
operator
*
()
{
return
*
ptr_
;
}
const
value_type
*
operator
->
()
{
return
ptr_
;
}
const
pointer
operator
->
()
{
return
ptr_
;
}
bool
operator
==
(
const
self_type
&
rhs
)
{
return
ptr_
==
rhs
.
ptr_
;
}
bool
operator
!=
(
const
self_type
&
rhs
)
{
return
ptr_
!=
rhs
.
ptr_
;
}
private
:
value_type
*
ptr_
;
pointer
ptr_
;
};
public
:
...
...
@@ -196,6 +200,8 @@ public:
}
}
inline
void
fill
(
const
VecType
&
val
)
{
std
::
fill_n
(
m_dataCast
,
m_vecSize
,
val
);
}
inline
int
size
()
const
{
return
m_vecSize
;
}
inline
void
squeeze
()
override
{
resize
(
m_vecSize
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment