File tree Expand file tree Collapse file tree 2 files changed +3
-19
lines changed
include/opentelemetry/common Expand file tree Collapse file tree 2 files changed +3
-19
lines changed Original file line number Diff line number Diff line change @@ -839,8 +839,10 @@ RECURSIVE = YES
839
839
840
840
EXCLUDE = ../include/opentelemetry/common/spin_lock_mutex.h \
841
841
../include/opentelemetry/common/key_value_iterable_view.h \
842
+ ../include/opentelemetry/common/kv_properties.h \
843
+ ../include/opentelemetry/common/string_util.h \
842
844
../include/opentelemetry/trace/span_context_kv_iterable_view.h \
843
- ../include/opentelemetry/nostd/detail
845
+ ../include/opentelemetry/nostd
844
846
845
847
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
846
848
# directories that are symbolic links (a Unix file system feature) are excluded
Original file line number Diff line number Diff line change @@ -29,23 +29,5 @@ class KeyValueIterable
29
29
*/
30
30
virtual size_t size () const noexcept = 0;
31
31
};
32
-
33
- //
34
- // NULL object pattern empty iterable.
35
- //
36
- class NullKeyValueIterable : public KeyValueIterable
37
- {
38
- public:
39
- NullKeyValueIterable (){};
40
-
41
- virtual bool ForEachKeyValue (
42
- nostd::function_ref<bool (nostd::string_view, common::AttributeValue)>) const noexcept
43
- {
44
- return true ;
45
- };
46
-
47
- virtual size_t size () const noexcept { return 0 ; }
48
- };
49
-
50
32
} // namespace common
51
33
OPENTELEMETRY_END_NAMESPACE
You can’t perform that action at this time.
0 commit comments