Revision: 73095
          http://sourceforge.net/p/brlcad/code/73095
Author:   brlcad
Date:     2019-05-20 18:35:39 +0000 (Mon, 20 May 2019)
Log Message:
-----------
redundant, already has begin/end decls

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

Modified: brlcad/trunk/include/pc.h
===================================================================
--- brlcad/trunk/include/pc.h   2019-05-20 18:22:51 UTC (rev 73094)
+++ brlcad/trunk/include/pc.h   2019-05-20 18:35:39 UTC (rev 73095)
@@ -54,9 +54,9 @@
  */
 
 #define PC_PCSET_PUSHP(_pcsp,_par) \
-       BU_LIST_PUSH(&(_pcsp->ps->l),&(_par->l));
+    BU_LIST_PUSH(&(_pcsp->ps->l),&(_par->l));
 #define PC_PCSET_PUSHC(_pcsp,_con) \
-       BU_LIST_PUSH(&(_pcsp->cs->l),&(_con->l));
+    BU_LIST_PUSH(&(_pcsp->cs->l),&(_con->l));
 
 /** Definitions for data storage and transfer type information */
 #define PC_DB_FASTF_T 1
@@ -66,9 +66,6 @@
 #define PC_DB_BYSTRUCT 1
 #define PC_DB_BYEXPR 2
 
-#ifdef __cplusplus
-extern "C" {
-#endif
 
 /**
  * A composite set of parameters constraints with respect to those
@@ -89,9 +86,9 @@
 };
 
 struct pc_constraint_fp {
-       int nargs;
-       int dimension;
-       int (*fp) (double ** a);
+    int nargs;
+    int dimension;
+    int (*fp) (double ** a);
 };
 
 struct pc_constrnt {
@@ -132,11 +129,8 @@
 PC_EXPORT extern int pc_ismodpositive(double ** v);
 PC_EXPORT extern void pc_mk_ismodpositive(struct pc_constrnt ** c, const char 
* name, const char **args);
 
-#ifdef __cplusplus
-}
-#endif
+__END_DECLS
 
-__END_DECLS
 #endif
 /** @} */
 /*

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