28 lines
477 B
C++
28 lines
477 B
C++
//
|
|
// Copyright (c) 2020 Krystian Stasiowski (sdkrystian@gmail.com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef EXAMPLE_ISSUE_33_HPP
|
|
#define EXAMPLE_ISSUE_33_HPP
|
|
|
|
namespace example {
|
|
|
|
/** Issue 33
|
|
|
|
The Note and See Also sections should be distinct.
|
|
|
|
@note This is a note
|
|
|
|
@see https://boost.org
|
|
*/
|
|
struct issue_33
|
|
{
|
|
};
|
|
|
|
} // example
|
|
|
|
#endif
|