From c278a03054409d606551ba5065eee12732e07398 Mon Sep 17 00:00:00 2001 From: greg Date: Sun, 31 Mar 2019 12:13:52 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c7dba9..304fa54 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ In order to use a flat_hash_set or flat_hash_map, a hash function should be prov For example: -** file ** +### file "Person.h" ```c++ #include // minimal header providing phmap::HashState() @@ -198,7 +198,7 @@ namespace std The `std::hash` specialization for `Person` combines the hash values for both first and last name and age, using the convenient phmap::HashState() function, and returns the combined hash value. -** file ** +### file "main.cpp" ```c++ #include "Person.h" // defines Person with std::hash specialization