projects
/
lttng-tools.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
tests: gen-ust-events: abort() on argument error
[lttng-tools.git]
/
CodingStyle
diff --git
a/CodingStyle
b/CodingStyle
index 8833180d6979837fdf652ad3fbbd995253b924f0..6ff931b150cc920ded9e7ba6807059a8fa814922 100644
(file)
--- a/
CodingStyle
+++ b/
CodingStyle
@@
-31,14
+31,22
@@
enum my_enum {
#define DEFAULT_VALUE_OF_SOME_SORT 6
#define THE_ANSWER 42
#define DEFAULT_VALUE_OF_SOME_SORT 6
#define THE_ANSWER 42
-Use space to indent the '\' at the end but tabs at the beginning.
+Use either a single space or tabs to indent the '\' at the end of lines.
+Use tabs at the beginning of lines.
-#define a_macro(x) \
- do { \
- fsync(); \
- } while (0); \
+Either:
-It's really the only time we use spaces. For everything else, there is TABS! :)
+#define a_macro(x) \
+ do { \
+ fsync(); \
+ } while (0)
+
+or
+
+#define a_macro(x) \
+ do { \
+ fsync(); \
+ } while (0)
Here is a pretty cool vim macro that will highlight your whitespaces and spaces
before tab. This helps a *LOT* when coding.
Here is a pretty cool vim macro that will highlight your whitespaces and spaces
before tab. This helps a *LOT* when coding.
This page took
0.024183 seconds
and
5
git commands to generate.