summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/33048-bug_i_405.cpp
blob: eda9b0ddc4a53717e314758e19804a326baa60a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace shark {
    template<class Closure>
    struct indexed_iterator {
        typedef typename boost::mpl::if_<
                boost::is_const<
                    Closure
                >,
                typename Closure::const_reference,
                typename Closure::reference
        >::type reference;
    };
}