Skip to content

Commit

Permalink
Modified files - corrected syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
daleksla committed Jun 23, 2021
1 parent 8fa0e40 commit afd94b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/iterators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace types {
static CONSTEXPRCXX11 int value = 1 ;

public:
static CONSTEXPRCXX11 int operator()
CONSTEXPRCXX11 int operator()()
{
return value ;
}
Expand All @@ -30,7 +30,7 @@ namespace types {
static CONSTEXPRCXX11 int value = 2 ;

public:
static CONSTEXPRCXX11 int operator()
CONSTEXPRCXX11 int operator()()
{
return value ;
}
Expand All @@ -42,7 +42,7 @@ namespace types {
static CONSTEXPRCXX11 int value = 3 ;

public:
static CONSTEXPRCXX11 int operator()
CONSTEXPRCXX11 int operator()()
{
return value ;
}
Expand Down

0 comments on commit afd94b1

Please sign in to comment.