summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-09-23 09:20:32 +0200
committerGitHub <noreply@github.com>2022-09-23 09:20:32 +0200
commit7b7e65323459375cda40274c9b5828b3f5aebda9 (patch)
tree245edb7a6b35afa3c674202784cc9ac894e6b512 /TAO/orbsvcs/ImplRepo_Service
parent0b7e12778ae92315cbd51c901cb8402d6bd646a7 (diff)
parent2aab75d5fddc126e8085c70fe8e1b875b75a30ef (diff)
downloadATCD-7b7e65323459375cda40274c9b5828b3f5aebda9.tar.gz
Merge pull request #1941 from knutpett/knutpett/remove_void_part2
Part 2: Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/orbsvcs/ImplRepo_Service')
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/tao_imr_i.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/tao_imr_i.h b/TAO/orbsvcs/ImplRepo_Service/tao_imr_i.h
index e2a5ed189c9..f24b40bdb06 100644
--- a/TAO/orbsvcs/ImplRepo_Service/tao_imr_i.h
+++ b/TAO/orbsvcs/ImplRepo_Service/tao_imr_i.h
@@ -95,13 +95,13 @@ public:
virtual int parse (int argc, ACE_TCHAR **argv) = 0;
/// Do the work.
- virtual int run (void) = 0;
+ virtual int run () = 0;
/// Sets the implrepo locator pointer
void set_imr (ImplementationRepository::Administration_ptr imr);
protected:
- TAO_IMR_Op (void) : imr_ (0), quiet_ (false) {}
+ TAO_IMR_Op () : imr_ (0), quiet_ (false) {}
// = Helper methods