Skip to content

Commit 01b7a84

Browse files
authored
Minor api documentation cleanup (#728)
1 parent 4027edb commit 01b7a84

File tree

2 files changed

+3
-19
lines changed

2 files changed

+3
-19
lines changed

api/docs/Doxyfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -839,8 +839,10 @@ RECURSIVE = YES
839839

840840
EXCLUDE = ../include/opentelemetry/common/spin_lock_mutex.h \
841841
../include/opentelemetry/common/key_value_iterable_view.h \
842+
../include/opentelemetry/common/kv_properties.h \
843+
../include/opentelemetry/common/string_util.h \
842844
../include/opentelemetry/trace/span_context_kv_iterable_view.h \
843-
../include/opentelemetry/nostd/detail
845+
../include/opentelemetry/nostd
844846

845847
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
846848
# directories that are symbolic links (a Unix file system feature) are excluded

api/include/opentelemetry/common/key_value_iterable.h

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,5 @@ class KeyValueIterable
2929
*/
3030
virtual size_t size() const noexcept = 0;
3131
};
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-
5032
} // namespace common
5133
OPENTELEMETRY_END_NAMESPACE

0 commit comments

Comments
 (0)