You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/12/19 22:18:09 UTC

[lucy-commits] svn commit: r1220950 - /incubator/lucy/trunk/clownfish/src/CFCDocuComment.h

Author: marvin
Date: Mon Dec 19 21:18:08 2011
New Revision: 1220950

URL: http://svn.apache.org/viewvc?rev=1220950&view=rev
Log:
Add include guards to CFCDocuComment.h.

Modified:
    incubator/lucy/trunk/clownfish/src/CFCDocuComment.h

Modified: incubator/lucy/trunk/clownfish/src/CFCDocuComment.h
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/src/CFCDocuComment.h?rev=1220950&r1=1220949&r2=1220950&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/src/CFCDocuComment.h (original)
+++ incubator/lucy/trunk/clownfish/src/CFCDocuComment.h Mon Dec 19 21:18:08 2011
@@ -14,6 +14,13 @@
  * limitations under the License.
  */
 
+#ifndef H_CFCDOCUCOMMENT
+#define H_CFCDOCUCOMMENT
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 typedef struct CFCDocuComment CFCDocuComment;
 
 CFCDocuComment*
@@ -41,3 +48,9 @@ CFCDocuComment_get_param_docs(CFCDocuCom
 const char*
 CFCDocuComment_get_retval(CFCDocuComment *self);
 
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* H_CFCDOCUCOMMENT */
+