Skip to content

Commit

Permalink
Mark pure getters as const (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafedeli88 authored Apr 19, 2021
1 parent 3262288 commit 3a948c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ namespace breit_wheeler{
*/
PXRMP_GPU_QUALIFIER
PXRMP_FORCE_INLINE
bool is_init()
bool is_init() const
{
return m_init_flag;
}
Expand Down Expand Up @@ -778,7 +778,7 @@ namespace breit_wheeler{
*/
PXRMP_GPU_QUALIFIER
PXRMP_FORCE_INLINE
bool is_init()
bool is_init() const
{
return m_init_flag;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ namespace quantum_sync{
*/
PXRMP_GPU_QUALIFIER
PXRMP_FORCE_INLINE
bool is_init()
bool is_init() const
{
return m_init_flag;
}
Expand Down Expand Up @@ -730,7 +730,7 @@ namespace quantum_sync{
*/
PXRMP_GPU_QUALIFIER
PXRMP_FORCE_INLINE
bool is_init()
bool is_init() const
{
return m_init_flag;
}
Expand Down

0 comments on commit 3a948c4

Please sign in to comment.