Revision: 77025
          http://sourceforge.net/p/brlcad/code/77025
Author:   starseeker
Date:     2020-09-01 18:28:32 +0000 (Tue, 01 Sep 2020)
Log Message:
-----------
Indent for doxygen

Modified Paths:
--------------
    brlcad/trunk/include/common.h

Modified: brlcad/trunk/include/common.h
===================================================================
--- brlcad/trunk/include/common.h       2020-09-01 18:04:55 UTC (rev 77024)
+++ brlcad/trunk/include/common.h       2020-09-01 18:28:32 UTC (rev 77025)
@@ -466,8 +466,8 @@
 /**
  * Provide canonical preprocessor stringification.
  *
- * #define abc 123
- * CPP_STR(abc) => "abc"
+ *     #define abc 123
+ *     CPP_STR(abc) => "abc"
  */
 #ifndef CPP_STR
 #  define CPP_STR(x) # x
@@ -476,8 +476,8 @@
 /**
  * Provide canonical preprocessor expanded stringification.
  *
- * #define abc 123
- * CPP_XSTR(abc) => "123"
+ *     #define abc 123
+ *     CPP_XSTR(abc) => "123"
  */
 #ifndef CPP_XSTR
 #  define CPP_XSTR(x) CPP_STR(x)
@@ -486,12 +486,12 @@
 /**
  * Provide canonical preprocessor concatenation.
  *
- * #define abc 123
- * CPP_GLUE(abc, 123) => abc123
- * CPP_STR(CPP_GLUE(abc, 123)) => "CPP_GLUE(abc, 123)"
- * CPP_XSTR(CPP_GLUE(abc, 123)) => "abc123"
- * #define abc123 "xyz"
- * CPP_GLUE(abc, 123) => abc123 => "xyz"
+ *     #define abc 123
+ *     CPP_GLUE(abc, 123) => abc123
+ *     CPP_STR(CPP_GLUE(abc, 123)) => "CPP_GLUE(abc, 123)"
+ *     CPP_XSTR(CPP_GLUE(abc, 123)) => "abc123"
+ *     #define abc123 "xyz"
+ *     CPP_GLUE(abc, 123) => abc123 => "xyz"
  */
 #ifndef CPP_GLUE
 #  define CPP_GLUE(a, b) a ## b
@@ -500,10 +500,10 @@
 /**
  * Provide canonical preprocessor expanded concatenation.
  *
- * #define abc 123
- * CPP_XGLUE(abc, 123) => 123123
- * CPP_STR(CPP_XGLUE(abc, 123)) => "CPP_XGLUE(abc, 123)"
- * CPP_XSTR(CPP_XGLUE(abc, 123)) => "123123"
+ *     #define abc 123
+ *     CPP_XGLUE(abc, 123) => 123123
+ *     CPP_STR(CPP_XGLUE(abc, 123)) => "CPP_XGLUE(abc, 123)"
+ *     CPP_XSTR(CPP_XGLUE(abc, 123)) => "123123"
  */
 #ifndef CPP_XGLUE
 #  define CPP_XGLUE(a, b) CPP_GLUE(a, b)
@@ -512,9 +512,9 @@
 /**
  * Provide format specifier string tied to a size (e.g., "%123s")
  *
- * #define STR_LEN 10+1
- * char str[STR_LEN] = {0};
- * scanf(CPP_SCANSIZE(STR_LEN) "\n", str);
+ *     #define STR_LEN 10+1
+ *     char str[STR_LEN] = {0};
+ *     scanf(CPP_SCANSIZE(STR_LEN) "\n", str);
  */
 #ifndef CPP_SCAN
 #  define CPP_SCAN(sz) "%" CPP_XSTR(sz) "s"

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to