Skip to content

Commit 1e0d613

Browse files
committed
format
1 parent 4419919 commit 1e0d613

File tree

3 files changed

+9
-34
lines changed

3 files changed

+9
-34
lines changed

doc/doxygen.cfg.in

Lines changed: 0 additions & 27 deletions
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/tst/suite.cpp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,13 @@ void suite::add(std::string id, utki::flags<flag> flags, std::function<void()> p
5454
#ifdef DEBUG
5555
auto r =
5656
#endif
57-
this->tests.insert(std::make_pair(
58-
std::move(id),
59-
// NOLINTNEXTLINE(modernize-use-designated-initializers)
60-
test_info{std::move(proc), flags}
61-
));
57+
this->tests.insert(
58+
std::make_pair(
59+
std::move(id),
60+
// NOLINTNEXTLINE(modernize-use-designated-initializers)
61+
test_info{std::move(proc), flags}
62+
)
63+
);
6264
ASSERT(r.second)
6365
}
6466

src/tst/suite.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ class suite
194194
* as argument.
195195
*/
196196
template <class parameter_type>
197-
void add( //
198-
std::string id,
197+
void add(
198+
std::string id, //
199199
std::vector<parameter_type> params,
200200
std::function<void(const parameter_type&)> proc
201201
)

0 commit comments

Comments
 (0)