clang-metatool
A framework for reusing code in clang tools
file_graph_edge_multimap.h
Go to the documentation of this file.
1 #ifndef INCLUDED_CLANGMETATOOL_TYPES_FILE_GRAPH_EDGE_MULTIMAP_H
2 #define INCLUDED_CLANGMETATOOL_TYPES_FILE_GRAPH_EDGE_MULTIMAP_H
3 
4 #include <map>
5 
8 
9 namespace clangmetatool {
10 namespace types {
11 
12 template <typename OTHER>
13 using FileGraphEdgeMultimap = std::multimap<FileGraphEdge, OTHER>;
14 }
15 }
16 
17 #endif
18 
19 // ----------------------------------------------------------------------------
20 // Copyright 2018 Bloomberg Finance L.P.
21 //
22 // Licensed under the Apache License, Version 2.0 (the "License");
23 // you may not use this file except in compliance with the License.
24 // You may obtain a copy of the License at
25 //
26 // http://www.apache.org/licenses/LICENSE-2.0
27 //
28 // Unless required by applicable law or agreed to in writing, software
29 // distributed under the License is distributed on an "AS IS" BASIS,
30 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31 // See the License for the specific language governing permissions and
32 // limitations under the License.
33 // ----------------------------- END-OF-FILE ----------------------------------
std::multimap< FileGraphEdge, OTHER > FileGraphEdgeMultimap