mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-14 19:06:05 +00:00
22 lines
752 B
C++
22 lines
752 B
C++
![]() |
//===--- LangOptions.cpp - C Language Family Language Options ---*- C++ -*-===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file defines the LangOptions class.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
#include "clang/Basic/LangOptions.h"
|
||
|
|
||
|
using namespace clang;
|
||
|
|
||
|
LangOptions::LangOptions() {
|
||
|
#define LANGOPT(Name, Bits, Default, Description) Name = Default;
|
||
|
#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default);
|
||
|
#include "clang/Basic/LangOptions.def"
|
||
|
}
|