Rename the 'concept' variable in SymbolInterfaces.td
authorSameer Rahmani <lxsameer@gnu.org>
Fri, 26 Mar 2021 20:15:06 +0000 (20:15 +0000)
committerMehdi Amini <joker.eph@gmail.com>
Fri, 26 Mar 2021 20:17:24 +0000 (20:17 +0000)
commit86a2fa499879a5d097a5c08cd7111f1ea1cad396
tree1885e5e57d15b45476520e3e0b6ace601a382240
parent4858e081d764537309e8200f144402fb73d603e4
Rename the 'concept' variable in  SymbolInterfaces.td

`concept` is a reserved keyword in C++20, it can't be used as a variable name.
Here is an example of the failure:

```
      auto *concept = getInterfaceFor(op);
            ^
include/mlir/IR/SymbolInterfaces.h.inc:156:12: error: expected expression [clang-diagnostic-error]
      if (!concept)
           ^
```

Reviewed By: mehdi_amini

Differential Revision: https://reviews.llvm.org/D99369
mlir/include/mlir/IR/SymbolInterfaces.td