From 3dbc362fe295d9c5855223abbd4c7f4e125be614 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Thu, 15 Mar 2018 17:56:44 +0000 Subject: [PATCH] Move some function declarations higher so they can be found. llvm-svn: 327653 --- llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h b/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h index a2815a2..907f5ba 100644 --- a/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h +++ b/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h @@ -29,6 +29,9 @@ class BinaryStreamWriter; namespace pdb { +Error readSparseBitVector(BinaryStreamReader &Stream, SparseBitVector<> &V); +Error writeSparseBitVector(BinaryStreamWriter &Writer, SparseBitVector<> &Vec); + template class HashTable; template @@ -317,9 +320,6 @@ private: } }; -Error readSparseBitVector(BinaryStreamReader &Stream, SparseBitVector<> &V); -Error writeSparseBitVector(BinaryStreamWriter &Writer, SparseBitVector<> &Vec); - } // end namespace pdb } // end namespace llvm -- 2.7.4