]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/docca/example/include/docca/issue_55.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / tools / docca / example / include / docca / issue_55.hpp
1 //
2 // Copyright (c) 2020 Krystian Stasiowski (sdkrystian@gmail.com)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7
8 #ifndef EXAMPLE_ISSUE_55_HPP
9 #define EXAMPLE_ISSUE_55_HPP
10
11 namespace example {
12
13 /** Issue 55
14
15 Clicking @ref f should lead to the
16 overload resolution landing page.
17 */
18 struct issue_55
19 {
20 void f(int);
21 void f(double);
22 };
23
24 } // example
25
26 #endif