Remove redundant qualification

Address GCC error: extra qualification not allowed [-fpermissive]

PiperOrigin-RevId: 268133737
This commit is contained in:
Jacques Pienaar 2019-09-09 19:50:19 -07:00 committed by A. Unique TensorFlower
parent af27f4c746
commit a23f69a37b
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace llvm {
// Specialize GraphTraits to treat Block as a graph of Operations as nodes and
// uses as edges.
template <> struct llvm::GraphTraits<mlir::Block *> {
template <> struct GraphTraits<mlir::Block *> {
using GraphType = mlir::Block *;
using NodeRef = mlir::Operation *;