Argyrios Kyrtzidis | 0eca89e | 2010-08-20 16:03:52 +0000 | [diff] [blame] | 1 | //===- ASTCommon.h - Common stuff for ASTReader/ASTWriter -*- 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 defines common functions that both ASTReader and ASTWriter use. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_CLANG_SERIALIZATION_LIB_AST_COMMON_H |
| 15 | #define LLVM_CLANG_SERIALIZATION_LIB_AST_COMMON_H |
| 16 | |
| 17 | namespace clang { |
| 18 | class Selector; |
| 19 | |
| 20 | namespace serialization { |
| 21 | |
| 22 | unsigned ComputeHash(Selector Sel); |
| 23 | |
| 24 | } // namespace serialization |
| 25 | |
| 26 | } // namespace clang |
| 27 | |
| 28 | #endif |