Fix: headers: add missing end of `extern "C"` curly brackets (for C++)
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Sat, 27 Apr 2019 21:03:50 +0000 (17:03 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 3 May 2019 22:19:40 +0000 (18:19 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Change-Id: I5f6277ce3075f26bec6507b7b26977d33aea858f
Reviewed-on: https://review.gerrithub.io/c/eepp/babeltrace/+/452301
Reviewed-by: Simon Marchi <simon.marchi@polymtl.ca>
include/babeltrace/ctf-writer/utils.h
include/babeltrace/util.h

index f58a21b0df18b046c679fc501bc29caf29f7493c..f68e3ab5a9a3f308bd3e2862649cb039f2ee9bd1 100644 (file)
@@ -43,4 +43,8 @@ int bt_ctf_validate_identifier(const char *identifier)
        return bt_ctf_identifier_is_valid(identifier) ? 1 : 0;
 }
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* BABELTRACE_CTF_WRITER_UTILS_H */
index 2ac4684d830d40fdea2422c374cc1cefc9f9aaa7..f251eda909c20cf3c906fa1f3accaf7f4e6b2548 100644 (file)
@@ -38,4 +38,8 @@ bt_util_status bt_util_clock_cycles_to_ns_from_origin(uint64_t cycles,
                uint64_t frequency, int64_t offset_seconds,
                uint64_t offset_cycles, int64_t *ns);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* BABELTRACE_UTIL_H */
This page took 0.024997 seconds and 4 git commands to generate.