diff options
| -rw-r--r-- | llvm/tools/lli/RemoteJITUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/lli/RemoteJITUtils.h b/llvm/tools/lli/RemoteJITUtils.h index a3f3fa0fd3b..d5488ad555c 100644 --- a/llvm/tools/lli/RemoteJITUtils.h +++ b/llvm/tools/lli/RemoteJITUtils.h @@ -24,7 +24,7 @@ #endif /// RPC channel that reads from and writes from file descriptors. -class FDRPCChannel : public llvm::orc::remote::RPCChannel { +class FDRPCChannel final : public llvm::orc::remote::RPCChannel { public: FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} |

