YouCompleteMe/cpp/llvm/tools/clang/lib/Driver/Tool.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

22 lines
604 B
C++

//===--- Tool.cpp - Compilation Tools -------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "clang/Driver/Tool.h"
using namespace clang::driver;
Tool::Tool(const char *_Name, const char *_ShortName,
const ToolChain &TC) : Name(_Name), ShortName(_ShortName),
TheToolChain(TC)
{
}
Tool::~Tool() {
}