diff options
author | Abseil Team <absl-team@google.com> | 2023-02-23 20:39:43 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-02-23 20:40:25 (GMT) |
commit | d0ba3ccc7659a7af2ee5d2039f8e6978f35b67ce (patch) | |
tree | 484dea140b8b5e57916015eaf74b0e21f20be444 /docs | |
parent | 39a26e12d67ed6c21feeb606372bfee39a8e6d53 (diff) | |
download | googletest-d0ba3ccc7659a7af2ee5d2039f8e6978f35b67ce.zip googletest-d0ba3ccc7659a7af2ee5d2039f8e6978f35b67ce.tar.gz googletest-d0ba3ccc7659a7af2ee5d2039f8e6978f35b67ce.tar.bz2 |
Added a missing semicolon for GTEST_FLAG_SET code snippet.
PiperOrigin-RevId: 511858980
Change-Id: I0f9e6ffdeb8ae809d662eb3ff46eab5a109a8d93
Diffstat (limited to 'docs')
-rw-r--r-- | docs/advanced.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/advanced.md b/docs/advanced.md index 7d15dfd..6b4c3f0 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -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, |