Top "Google-style-guide" questions

The Google Style Guide project holds the style guidelines googlers use for Google code.

Google's style guide about input/output parameters as pointers

The Google C++ Style Guide draws a clear distinction (strictly followed by cpplint.py) between input parameters(→ const ref, value) …

c++ parameters reference google-style-guide cpplint
Sample Code with Examples for the C++ Google Style Guide?

Are there any good places to get examples for the C++ Google Style Guide?

c++ google-style-guide
Editing Google's C++ DISALLOW_COPY_AND_ASSIGN Preprocessor Macro for C++11 Move Semantics

I've been using Google's DISALLOW_COPY_AND_ASSIGN macro from their C++ Style Guide for a couple of months now, …

c++ c++11 c-preprocessor google-style-guide
Running CPPlint on whole project

I want to run cpplint.py on my whole project not for single file to get a report for all …

google-style-guide cpplint
How to resolve At-clause should have a non-empty description? - Checkstyle - Java

I am using the google java style in the checkstyle plugin for eclipse luna. Seeing this error all over my …

java checkstyle google-style-guide
AStyle for Google C++ style guide

I just started using Astyle with VS-2013 for C++. I want to configure it to follow the Google C++ style …

c++ visual-studio code-formatting astyle google-style-guide
Is using an unsigned rather than signed int more likely to cause bugs? Why?

In the Google C++ Style Guide, on the topic of "Unsigned Integers", it is suggested that Because of historical accident, …

c++ c google-style-guide