Skip to content

Commit d543445

Browse files
committed
format
1 parent c9057e3 commit d543445

File tree

5 files changed

+8
-35
lines changed

5 files changed

+8
-35
lines changed

doc/doxygen.cfg.in

-27
Original file line numberDiff line numberDiff line change
@@ -1098,14 +1098,6 @@ HTML_COLORSTYLE_SAT = 100
10981098

10991099
HTML_COLORSTYLE_GAMMA = 80
11001100

1101-
# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1102-
# page will contain the date and time when the page was generated. Setting this
1103-
# to NO can help when comparing the output of multiple runs.
1104-
# The default value is: YES.
1105-
# This tag requires that the tag GENERATE_HTML is set to YES.
1106-
1107-
HTML_TIMESTAMP = YES
1108-
11091101
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
11101102
# documentation will contain sections that can be hidden and shown after the
11111103
# page has loaded.
@@ -1648,16 +1640,6 @@ LATEX_BATCHMODE = NO
16481640

16491641
LATEX_HIDE_INDICES = NO
16501642

1651-
# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
1652-
# code with syntax highlighting in the LaTeX output.
1653-
#
1654-
# Note that which sources are shown also depends on other settings such as
1655-
# SOURCE_BROWSER.
1656-
# The default value is: NO.
1657-
# This tag requires that the tag GENERATE_LATEX is set to YES.
1658-
1659-
LATEX_SOURCE_CODE = NO
1660-
16611643
# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
16621644
# bibliography, e.g. plainnat, or ieeetr. See
16631645
# http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
@@ -1981,15 +1963,6 @@ EXTERNAL_PAGES = YES
19811963
# Configuration options related to the dot tool
19821964
#---------------------------------------------------------------------------
19831965

1984-
# If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram
1985-
# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
1986-
# NO turns the diagrams off. Note that this option also works with HAVE_DOT
1987-
# disabled, but it is recommended to install and use dot, since it yields more
1988-
# powerful graphs.
1989-
# The default value is: YES.
1990-
1991-
CLASS_DIAGRAMS = YES
1992-
19931966
# You can include diagrams made with dia in doxygen documentation. Doxygen will
19941967
# then run dia to produce the diagram and insert it in the documentation. The
19951968
# DIA_PATH tag allows you to specify the directory where the dia binary resides.

src/clargs/parser.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -310,9 +310,9 @@ void parser::stop()
310310
this->stop_parsing_requested = true;
311311
}
312312

313-
void parser::add( //
314-
std::function<void( //
315-
std::string_view command,
313+
void parser::add(
314+
std::function<void(
315+
std::string_view command, //
316316
utki::span<const char* const> args
317317
)> subcommand_handler
318318
)

src/clargs/parser.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,9 @@ class parser
169169
* Subcommand is only handled if key parsing is enabled, which is default (see enable_key_parsing()).
170170
* @param subcommand_handler - handler callback for subcommand.
171171
*/
172-
void add( //
173-
std::function<void( //
174-
std::string_view command,
172+
void add(
173+
std::function<void(
174+
std::string_view command, //
175175
utki::span<const char* const> args
176176
)> subcommand_handler
177177
);

src/makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ this_ldlibs += -lutki
1414

1515
$(eval $(prorab-build-lib))
1616

17-
this_src_dir :=
17+
this_src_dir := $(this_name)
1818
this_license_file := ../LICENSE
1919
$(eval $(prorab-license))
2020

0 commit comments

Comments
 (0)