Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions math/testfile.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include <undocumented-header>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File should begin with a comment header

/**
 * @file
 * @brief Add one-line description here. Should contain a Wikipedia
 * link or another source explaining the algorithm/implementation.
 * @details
 * This is a multi-line
 * description containing links, references,
 * math equations, etc.
 * @author [Name](https://github.com/handle)
 * @see related_file.cpp, another_file.cpp
 */


int func_without_documentation(int x, int y) {
return x + y;
}

int main() {
int x = 20;
int y = 30;

}
Loading