X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Ffilter.hpp;h=ae061fd9390ec7f59001c79a3c4ca07bb1e2430b;hb=28f23191dcbf047429d51950a337a57d7a3f866a;hp=085d6d03442ea36e42e425f5dcf1c7b0e493551a;hpb=f250b40e2179eccdb83766bf4abef5a35036c47b;p=lttng-tools.git diff --git a/src/common/filter.hpp b/src/common/filter.hpp index 085d6d034..ae061fd93 100644 --- a/src/common/filter.hpp +++ b/src/common/filter.hpp @@ -16,8 +16,7 @@ struct bytecode_symbol_iterator; * Create an iterator on a bytecode's symbols. The iterator points to the * first element after creation. */ -struct bytecode_symbol_iterator *bytecode_symbol_iterator_create( - struct lttng_bytecode *bytecode); +struct bytecode_symbol_iterator *bytecode_symbol_iterator_create(struct lttng_bytecode *bytecode); /* * Advance iterator of one element. @@ -28,8 +27,7 @@ int bytecode_symbol_iterator_next(struct bytecode_symbol_iterator *it); int bytecode_symbol_iterator_get_type(struct bytecode_symbol_iterator *it); -const char *bytecode_symbol_iterator_get_name( - struct bytecode_symbol_iterator *it); +const char *bytecode_symbol_iterator_get_name(struct bytecode_symbol_iterator *it); void bytecode_symbol_iterator_destroy(struct bytecode_symbol_iterator *it);