Deleted Added
full compact
ObjCNoReturn.h (243830) ObjCNoReturn.h (280031)
1//= ObjCNoReturn.h - Handling of Cocoa APIs known not to return --*- C++ -*---//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements special handling of recognizing ObjC API hooks that
11// do not return but aren't marked as such in API headers.
12//
13//===----------------------------------------------------------------------===//
14
1//= ObjCNoReturn.h - Handling of Cocoa APIs known not to return --*- C++ -*---//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements special handling of recognizing ObjC API hooks that
11// do not return but aren't marked as such in API headers.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_ANALYSIS_DS_OBJCNORETURN
16#define LLVM_CLANG_ANALYSIS_DS_OBJCNORETURN
15#ifndef LLVM_CLANG_ANALYSIS_DOMAINSPECIFIC_OBJCNORETURN_H
16#define LLVM_CLANG_ANALYSIS_DOMAINSPECIFIC_OBJCNORETURN_H
17
18#include "clang/Basic/IdentifierTable.h"
19
20namespace clang {
21
22class ASTContext;
23class ObjCMessageExpr;
24

--- 22 unchanged lines hidden ---
17
18#include "clang/Basic/IdentifierTable.h"
19
20namespace clang {
21
22class ASTContext;
23class ObjCMessageExpr;
24

--- 22 unchanged lines hidden ---