mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 17:21:42 +00:00
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:
parent
b1512d2a7a
commit
d957518b51
@ -16,7 +16,7 @@
|
||||
#define SUPPORT_ANNOTATION_H
|
||||
|
||||
#include <string>
|
||||
#include <assert.h>
|
||||
#include <cassert>
|
||||
|
||||
class AnnotationID;
|
||||
class Annotation;
|
||||
|
@ -21,15 +21,14 @@
|
||||
#ifndef LLVM_ABSTRACT_TYPE_USER_H
|
||||
#define LLVM_ABSTRACT_TYPE_USER_H
|
||||
|
||||
//
|
||||
// This is the "master" include for assert.h
|
||||
// Whether this file needs it or not, it must always include assert.h for the
|
||||
// files which include llvm/AbstractTypeUser.h
|
||||
// This is the "master" include for <cassert> Whether this file needs it or not,
|
||||
// it must always include <cassert> for the files which include
|
||||
// llvm/AbstractTypeUser.h
|
||||
//
|
||||
// In this way, most every LLVM source file will have access to the assert()
|
||||
// macro without having to #include <assert.h> directly.
|
||||
// macro without having to #include <cassert> directly.
|
||||
//
|
||||
#include "Config/assert.h"
|
||||
#include <cassert>
|
||||
|
||||
class Type;
|
||||
class DerivedType;
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include <vector>
|
||||
#include <functional>
|
||||
#include <string>
|
||||
#include <assert.h>
|
||||
#include <cassert>
|
||||
#include "Support/HashExtras.h"
|
||||
#include "Support/hash_set"
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include <vector>
|
||||
#include <functional>
|
||||
#include <string>
|
||||
#include <assert.h>
|
||||
#include <cassert>
|
||||
#include "Support/HashExtras.h"
|
||||
#include "Support/hash_set"
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#define SUPPORT_ANNOTATION_H
|
||||
|
||||
#include <string>
|
||||
#include <assert.h>
|
||||
#include <cassert>
|
||||
|
||||
class AnnotationID;
|
||||
class Annotation;
|
||||
|
Loading…
x
Reference in New Issue
Block a user