From: Zachary Turner Date: Thu, 15 Mar 2018 17:56:44 +0000 (+0000) Subject: Move some function declarations higher so they can be found. X-Git-Tag: llvmorg-7.0.0-rc1~10479 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3dbc362fe295d9c5855223abbd4c7f4e125be614;p=platform%2Fupstream%2Fllvm.git Move some function declarations higher so they can be found. llvm-svn: 327653 --- 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