From cc4675b8240b4d826d5841658b85b6389c3a350f Mon Sep 17 00:00:00 2001 From: greg Date: Sun, 31 Mar 2019 16:34:03 -0400 Subject: [PATCH] add comments --- parallel_hashmap/phmap_fwd_decl.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/parallel_hashmap/phmap_fwd_decl.h b/parallel_hashmap/phmap_fwd_decl.h index f1b212e..e903dc2 100644 --- a/parallel_hashmap/phmap_fwd_decl.h +++ b/parallel_hashmap/phmap_fwd_decl.h @@ -52,33 +52,33 @@ namespace phmap { template , class Eq = phmap::container_internal::hash_default_eq, - class Alloc = phmap::container_internal::Allocator> + class Alloc = phmap::container_internal::Allocator> // alias for std::allocator class flat_hash_set; template , class Eq = phmap::container_internal::hash_default_eq, class Alloc = phmap::container_internal::Allocator< - phmap::container_internal::Pair>> + phmap::container_internal::Pair>> // alias for std::allocator class flat_hash_map; template , class Eq = phmap::container_internal::hash_default_eq, - class Alloc = phmap::container_internal::Allocator> + class Alloc = phmap::container_internal::Allocator> // alias for std::allocator class node_hash_set; template , class Eq = phmap::container_internal::hash_default_eq, class Alloc = phmap::container_internal::Allocator< - phmap::container_internal::Pair>> + phmap::container_internal::Pair>> // alias for std::allocator class node_hash_map; template , class Eq = phmap::container_internal::hash_default_eq, - class Alloc = phmap::container_internal::Allocator, + class Alloc = phmap::container_internal::Allocator, // alias for std::allocator size_t N = 4, // 2**N submaps class Mutex = phmap::NullMutex> // use std::mutex to enable internal locks class parallel_flat_hash_set; @@ -87,7 +87,7 @@ namespace phmap { class Hash = phmap::container_internal::hash_default_hash, class Eq = phmap::container_internal::hash_default_eq, class Alloc = phmap::container_internal::Allocator< - phmap::container_internal::Pair>, + phmap::container_internal::Pair>, // alias for std::allocator size_t N = 4, // 2**N submaps class Mutex = phmap::NullMutex> // use std::mutex to enable internal locks class parallel_flat_hash_map; @@ -95,7 +95,7 @@ namespace phmap { template , class Eq = phmap::container_internal::hash_default_eq, - class Alloc = phmap::container_internal::Allocator, + class Alloc = phmap::container_internal::Allocator, // alias for std::allocator size_t N = 4, // 2**N submaps class Mutex = phmap::NullMutex> // use std::mutex to enable internal locks class parallel_node_hash_set; @@ -104,7 +104,7 @@ namespace phmap { class Hash = phmap::container_internal::hash_default_hash, class Eq = phmap::container_internal::hash_default_eq, class Alloc = phmap::container_internal::Allocator< - phmap::container_internal::Pair>, + phmap::container_internal::Pair>, // alias for std::allocator size_t N = 4, // 2**N submaps class Mutex = phmap::NullMutex> // use std::mutex to enable internal locks class parallel_node_hash_map;