equal
deleted
inserted
replaced
322 > { |
322 > { |
323 static const bool value = true; |
323 static const bool value = true; |
324 }; |
324 }; |
325 |
325 |
326 template <typename Graph, typename Enable = void> |
326 template <typename Graph, typename Enable = void> |
327 struct CloneableTagIndicator { |
327 struct BuildTagIndicator { |
328 static const bool value = false; |
328 static const bool value = false; |
329 }; |
329 }; |
330 |
330 |
331 template <typename Graph> |
331 template <typename Graph> |
332 struct CloneableTagIndicator< |
332 struct BuildTagIndicator< |
333 Graph, |
333 Graph, |
334 typename enable_if<typename Graph::CloneableTag, void>::type |
334 typename enable_if<typename Graph::BuildTag, void>::type |
335 > { |
335 > { |
336 static const bool value = true; |
336 static const bool value = true; |
337 }; |
337 }; |
338 |
338 |
339 } |
339 } |