Remove stdbool.h includes from C++ files
[babeltrace.git] / src / plugins / ctf / common / metadata / decoder-packetized-file-stream-to-buf.cpp
index 3b7224abd526cfafc74ce712a585ec756cedd517..182272415374da7b4caf0f5ba20062482d91a2df 100644 (file)
@@ -4,30 +4,30 @@
  * Copyright 2016-2017 Philippe Proulx <pproulx@efficios.com>
  */
 
+#include <glib.h>
+#include <inttypes.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <babeltrace2/babeltrace.h>
+
 #define BT_COMP_LOG_SELF_COMP       self_comp
 #define BT_COMP_LOG_SELF_COMP_CLASS self_comp_class
 #define BT_LOG_OUTPUT_LEVEL         log_level
 #define BT_LOG_TAG                  "PLUGIN/CTF/META/DECODER-DECODE-PACKET"
+#include "logging.hpp"
 #include "logging/comp-logging.h"
 
-#include "decoder-packetized-file-stream-to-buf.hpp"
-
-#include <stdio.h>
-#include <stdbool.h>
-#include <stdint.h>
-#include <stdlib.h>
-#include <inttypes.h>
 #include "common/assert.h"
 #include "common/uuid.h"
 #include "compat/memstream.h"
-#include <babeltrace2/babeltrace.h>
-#include <glib.h>
-#include <string.h>
 
 #include "ast.hpp"
+#include "decoder-packetized-file-stream-to-buf.hpp"
 #include "decoder.hpp"
 #include "scanner.hpp"
-#include "logging.hpp"
 
 #define TSDL_MAGIC 0x75d11d57
 
@@ -195,7 +195,6 @@ end:
     return ret;
 }
 
-BT_HIDDEN
 int ctf_metadata_decoder_packetized_file_stream_to_buf(FILE *fp, char **buf, int byte_order,
                                                        bool *is_uuid_set, uint8_t *uuid,
                                                        bt_logging_level log_level,
This page took 0.023985 seconds and 4 git commands to generate.