Use the C++ <cassert> header, not the C <assert.h> header

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7310 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2003-07-25 17:34:17 +00:00
parent b1512d2a7a
commit d957518b51
5 changed files with 9 additions and 10 deletions

View File

@ -10,7 +10,7 @@
#include <vector>
#include <functional>
#include <string>
#include <assert.h>
#include <cassert>
#include "Support/HashExtras.h"
#include "Support/hash_set"