Skip to content

Commit

Permalink
Remove redundant qualification
Browse files Browse the repository at this point in the history
Address GCC error: extra qualification not allowed [-fpermissive]

PiperOrigin-RevId: 268133737
  • Loading branch information
jpienaar authored and tensorflower-gardener committed Sep 10, 2019
1 parent af27f4c commit a23f69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlir/lib/Transforms/ViewOpGraph.cpp
Expand Up @@ -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 *;

Expand Down

0 comments on commit a23f69a

Please sign in to comment.