Skip to content

Commit

Permalink
Added a missing semicolon for GTEST_FLAG_SET code snippet.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 511858980
Change-Id: I0f9e6ffdeb8ae809d662eb3ff46eab5a109a8d93
  • Loading branch information
Abseil Team authored and Copybara-Service committed Feb 23, 2023
1 parent 39a26e1 commit d0ba3cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ The automated testing framework does not set the style flag. You can choose a
particular style of death tests by setting the flag programmatically:
```c++
GTEST_FLAG_SET(death_test_style, "threadsafe")
GTEST_FLAG_SET(death_test_style, "threadsafe");
```

You can do this in `main()` to set the style for all death tests in the binary,
Expand Down

0 comments on commit d0ba3cc

Please sign in to comment.