No public description

PiperOrigin-RevId: 673019591
Change-Id: I32c1a3668db56c989f1e2ecf55073572c2011f7e
diff --git a/mpact/sim/decoder/bin_format_visitor.cc b/mpact/sim/decoder/bin_format_visitor.cc
index ff1fdda..163f7d3 100644
--- a/mpact/sim/decoder/bin_format_visitor.cc
+++ b/mpact/sim/decoder/bin_format_visitor.cc
@@ -1030,14 +1030,14 @@
       opcode_enum =
           opcode_enum_literal.substr(1, opcode_enum_literal.size() - 2);
       if (opcode_enum.empty()) {
-        file_names_[context_file_map_.at(ctx)],
-            error_listener_->semanticError(attr_ctx->start,
-                                           "Empty opcode enum string");
+        error_listener_->semanticError(file_names_[context_file_map_.at(ctx)],
+                                       attr_ctx->start,
+                                       "Empty opcode enum string");
       }
       if (opcode_count > 0) {
-        file_names_[context_file_map_.at(ctx)],
-            error_listener_->semanticError(
-                attr_ctx->start, "More than one opcode enum declaration");
+        error_listener_->semanticError(file_names_[context_file_map_.at(ctx)],
+                                       attr_ctx->start,
+                                       "More than one opcode enum declaration");
       }
       opcode_count++;
     }