Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gather compiler stuff into a single class #5

Open
gquintin opened this issue Jun 11, 2020 · 0 comments
Open

Gather compiler stuff into a single class #5

gquintin opened this issue Jun 11, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@gquintin
Copy link
Contributor

For exemple:

struct compiler_base_t {
  virtual get_version();
};

struct gcc_t : compiler_base_t {
  get_version() {
    ...
  }
};

...

struct clang_t : compiler_base_t {
  get_version() {
    ...
  }
};
@gquintin gquintin added the enhancement New feature or request label Jun 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant