Skip to content

Commit

Permalink
Digraph
Browse files Browse the repository at this point in the history
  • Loading branch information
vjpai committed Jun 11, 2016
1 parent bd67b55 commit 77a927b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion doc/cpp-style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,7 @@ default capture). Other C++ functional features such as
constructor
to be available.
- Don't use `std::this_thread` . Use `gpr_sleep_until` for sleeping a thread.

- [Some adjacent character combinations cause problems]
(https://en.wikipedia.org/wiki/Digraphs_and_trigraphs#C). If declaring a
template against some class relative to the global namespace,
`<::name` will be non-portable. Separate the `<` from the `:` and use `< ::name`.

0 comments on commit 77a927b

Please sign in to comment.