[Orc] Make FDRPCChannel final.

This class is in the LLI tool, and isn't subclassed.

llvm-svn: 257937
This commit is contained in:
Lang Hames 2016-01-15 21:35:24 +00:00
parent 6c33fc1ee0
commit 22c5af782a
1 changed files with 1 additions and 1 deletions

View File

@ -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) {}