remove use of throw() specifier

This commit is contained in:
Michael Davidsaver
2016-02-10 09:45:42 -05:00
parent f0b88e349b
commit 069555a524
6 changed files with 6 additions and 10 deletions

View File

@ -1370,7 +1370,7 @@ class RPCService
virtual ~RPCService() {};
virtual PVStructurePtr request(
PVStructurePtr const & args
) throw (RPCRequestException) = 0;
) = 0;
};