Skip to content

Commit c307980

Browse files
authored
Merge pull request #4874 from Rageking8/correct-is-clock-struct-example
Correct is clock struct example
2 parents c009e1d + d10b38d commit c307980

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/standard-library/is-clock-struct.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,13 @@ The following code works because `is_clock`, derives from `Cpp17UnaryTypeTrait`,
5050
#include <iostream>
5151
#include <chrono>
5252

53-
using namespace `std::chrono`;
53+
using namespace std::chrono;
5454

5555
int main()
5656
{
5757
is_clock<system_clock> ic;
5858

5959
std::cout << std::boolalpha << ic.value << ", " << ic() << ", " << (bool)ic;
60-
return 0;
6160
}
6261
```
6362

0 commit comments

Comments
 (0)