forked from OSchip/llvm-project
parent
75fa84ebc6
commit
6e227ca836
|
@ -44,6 +44,12 @@ struct LangStandard {
|
||||||
unsigned Flags;
|
unsigned Flags;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/// getName - Get the name of this standard.
|
||||||
|
const char *getName() const { return ShortName; }
|
||||||
|
|
||||||
|
/// getDescription - Get the description of this standard.
|
||||||
|
const char *getDescription() const { return Description; }
|
||||||
|
|
||||||
/// hasBCPLComments - Language supports '//' comments.
|
/// hasBCPLComments - Language supports '//' comments.
|
||||||
bool hasBCPLComments() const { return Flags & frontend::BCPLComment; }
|
bool hasBCPLComments() const { return Flags & frontend::BCPLComment; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue