From 07f24bfa860a8016174c34628ef390f7aafdf502 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 14 Sep 2007 20:48:42 +0000 Subject: And an FoldingSetImpl::NodeID::AddInteger overload for int64_t, to avoid ambiguity. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41960 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/FoldingSet.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/llvm') diff --git a/include/llvm/ADT/FoldingSet.h b/include/llvm/ADT/FoldingSet.h index d88a814..155243a 100644 --- a/include/llvm/ADT/FoldingSet.h +++ b/include/llvm/ADT/FoldingSet.h @@ -149,6 +149,7 @@ public: void AddPointer(const void *Ptr); void AddInteger(signed I); void AddInteger(unsigned I); + void AddInteger(int64_t I); void AddInteger(uint64_t I); void AddFloat(float F); void AddDouble(double D); -- cgit v1.1