Update CodingStyle to account for C++ migration
[lttng-tools.git] / CONTRIBUTING.md
index 6873d78109b05927ed17de73cce8d335389b601a..0bebf12ef420fce860aaf07f4d57d77a5e4b47e7 100644 (file)
@@ -15,23 +15,7 @@ control. The upstream Git repository URL is:
 
 ## Coding standard
 
-LTTng-tools uses the
-[Linux kernel coding style](http://www.kernel.org/doc/Documentation/CodingStyle)
-with one addition: single-line `if`/`for`/`while` statements must be
-wrapped in braces.
-
-Example:
-
-~~~ c
-/* not good */
-if (this == that)
-    goto fail;
-
-/* good */
-if (this == that) {
-    goto fail;
-}
-~~~
+See CodingStyle for guidelines style and design guidelines.
 
 Although the LTTng-tools code base is primarily written in C, it does
 contain shell, Perl, and Python code as well. There is no official coding
This page took 0.022827 seconds and 4 git commands to generate.