Skip to content

Commit 1ede5ce

Browse files
committed
cc docs: fix some Doxygen errors
commit_hash:e5ace0041125ec3bc88c852afbe505e353d43422
1 parent d1f7aea commit 1ede5ce

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

core/include/userver/dump/meta_containers.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include <vector>
1111

1212
#include <userver/dump/meta.hpp>
13+
#include <userver/utils/meta.hpp>
1314

1415
USERVER_NAMESPACE_BEGIN
1516

core/include/userver/logging/component.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ namespace components {
5454
///
5555
/// ### Logs output
5656
/// You can specify where logs are written in the `file_path` option:
57-
/// - Use <tt>file_path: '@stdout'</tt> to write your logs to standard output stream;
58-
/// - Use <tt>file_path: '@stderr'</tt> to write your logs to standard error stream;
59-
/// - Use <tt>file_path: '@null'</tt> to suppress sending of logs;
57+
/// - Use <tt>file_path: '\@stdout'</tt> to write your logs to standard output stream;
58+
/// - Use <tt>file_path: '\@stderr'</tt> to write your logs to standard error stream;
59+
/// - Use <tt>file_path: '\@null'</tt> to suppress sending of logs;
6060
/// - Use <tt>file_path: /absolute/path/to/log/file.log</tt> to write your logs to file. Use USR1 signal or @ref server::handlers::OnLogRotate to reopen files after log rotation;
6161
/// - Use <tt>file_path: 'unix:/absolute/path/to/logs.sock'</tt> to write your logs to unix socket. Socket must be created before the service starts and closed by listener after service is shut down.
6262
///

kafka/include/userver/kafka/rebalance_types.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#include <cstdint>
44
#include <functional>
5+
#include <optional>
56

67
#include <userver/utils/span.hpp>
78
#include <userver/utils/zstring_view.hpp>

universal/include/userver/utils/encoding/hex.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ constexpr size_t FromHexUpperBound(size_t size) noexcept {
4747
void ToHex(std::string_view input, std::string& out) noexcept;
4848

4949
/// @brief Converts input to hex and writes data to output @p out.
50-
/// @warning `out` must be pre-allocated to at least @ref LengthInHexForm bytes.
50+
/// @warning `out` must be pre-allocated to at least @ref utils::encoding::LengthInHexForm bytes.
5151
/// @param input bytes to convert
5252
/// @param out buffer to write data
5353
void ToHexBuffer(std::string_view input, utils::span<char> out) noexcept;
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
#pragma once
22

3+
USERVER_NAMESPACE_BEGIN
4+
5+
namespace formats::literals {}
6+
7+
USERVER_NAMESPACE_END
8+
39
// NOLINTNEXTLINE(google-build-using-namespace, google-global-names-in-headers)
410
using namespace USERVER_NAMESPACE::formats::literals;

0 commit comments

Comments
 (0)