aboutsummaryrefslogtreecommitdiff
path: root/gcc/d/dmd/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/d/dmd/version.h')
-rw-r--r--gcc/d/dmd/version.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/d/dmd/version.h b/gcc/d/dmd/version.h
index dd83fd6..1200b2e 100644
--- a/gcc/d/dmd/version.h
+++ b/gcc/d/dmd/version.h
@@ -1,6 +1,6 @@
/* Compiler implementation of the D programming language
- * Copyright (C) 1999-2024 by The D Language Foundation, All Rights Reserved
+ * Copyright (C) 1999-2025 by The D Language Foundation, All Rights Reserved
* written by Walter Bright
* https://www.digitalmars.com
* Distributed under the Boost Software License, Version 1.0.
@@ -15,25 +15,17 @@
class DebugSymbol final : public Dsymbol
{
public:
- unsigned level;
-
DebugSymbol *syntaxCopy(Dsymbol *) override;
- const char *toChars() const override;
const char *kind() const override;
- DebugSymbol *isDebugSymbol() override;
void accept(Visitor *v) override { v->visit(this); }
};
class VersionSymbol final : public Dsymbol
{
public:
- unsigned level;
-
VersionSymbol *syntaxCopy(Dsymbol *) override;
- const char *toChars() const override;
const char *kind() const override;
- VersionSymbol *isVersionSymbol() override;
void accept(Visitor *v) override { v->visit(this); }
};