comparison unittests/ADT/VariadicFunctionTest.cpp @ 121:803732b1fca8

LLVM 5.0
author kono
date Fri, 27 Oct 2017 17:07:41 +0900
parents 95c75e76d11b
children c2174574ed3a
comparison
equal deleted inserted replaced
120:1172e4bd9c6f 121:803732b1fca8
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 9
10 #include "llvm/ADT/VariadicFunction.h"
11 #include "llvm/ADT/ArrayRef.h"
10 #include "gtest/gtest.h" 12 #include "gtest/gtest.h"
11 #include "llvm/ADT/ArrayRef.h"
12 #include "llvm/ADT/VariadicFunction.h"
13 13
14 using namespace llvm; 14 using namespace llvm;
15 namespace { 15 namespace {
16 16
17 // Defines a variadic function StringCat() to join strings. 17 // Defines a variadic function StringCat() to join strings.