### Guidelines for Developers * Do not know the meaning of > References and pointers should be formatted emphasizing type, not syntax: > ``` > T const& t; > T* t; > T* const t; > T const* t; > T const* const t; > ```
Guidelines for Developers