Skip to content

Commit d0ba3cc

Browse files
Abseil Teamcopybara-github
Abseil Team
authored andcommitted
Added a missing semicolon for GTEST_FLAG_SET code snippet.
PiperOrigin-RevId: 511858980 Change-Id: I0f9e6ffdeb8ae809d662eb3ff46eab5a109a8d93
1 parent 39a26e1 commit d0ba3cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ The automated testing framework does not set the style flag. You can choose a
562562
particular style of death tests by setting the flag programmatically:
563563
564564
```c++
565-
GTEST_FLAG_SET(death_test_style, "threadsafe")
565+
GTEST_FLAG_SET(death_test_style, "threadsafe");
566566
```
567567

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

0 commit comments

Comments
 (0)