remove mainpage doxygen tag

This commit is contained in:
Krishna Vedala 2020-05-26 13:28:12 -04:00
parent 7e3d87695f
commit 966aa2d333
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7

View File

@ -5,7 +5,9 @@
* A generic implementation of non-recursive merge sort.
*/
#include <cstddef> // for size_t
#include <iostream>
#include <utility> // for std::move & std::remove_reference_t
template <class Iterator>
void merge(Iterator, Iterator, const Iterator, char[]);
/// bottom-up merge sort which sorts elements in a non-decreasing order
@ -83,15 +85,7 @@ template <class Iterator>
void non_recursive_merge_sort(const Iterator first, const Iterator last) {
non_recursive_merge_sort(first, last, last - first);
}
/**
* @mainpage A demonstration of auto-generated documentation using Doxygen.
* Currently, it only creates output for non_recursive_merge_sort.cpp, but if
* it has proven its efficacy it can be expanded to other files.
* The configuration file is named doxy.txt and has been auto-generated too.
*/
// the remaining of this file is only for testing. It can erased to to convert
// it into a header file for later re-use.
#include <iostream>
int main(int argc, char** argv) {
int size;
std::cout << "Enter the number of elements : ";