summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30910-indent_namespace.h
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30910-indent_namespace.h')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30910-indent_namespace.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30910-indent_namespace.h b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30910-indent_namespace.h
new file mode 100644
index 00000000..d569a3ca
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30910-indent_namespace.h
@@ -0,0 +1,32 @@
+namespace ns1 {
+
+ void bar1(void);
+
+ class foo1
+ {
+ int i1;
+ };
+}
+
+namespace ns2
+{
+
+ void bar2(void);
+
+ class foo2
+ {
+ int i2;
+ };
+}
+
+namespace
+{
+
+ void bar3(void);
+ class foo3
+ {
+ int i3;
+ };
+
+}
+