diff --git a/code/components/citizen-server-impl/include/decorators/WithOutOfBand.h b/code/components/citizen-server-impl/include/decorators/WithOutOfBand.h index 09d99854a6..5544100b27 100644 --- a/code/components/citizen-server-impl/include/decorators/WithOutOfBand.h +++ b/code/components/citizen-server-impl/include/decorators/WithOutOfBand.h @@ -6,12 +6,6 @@ namespace fx { namespace ServerDecorators { - template - const fwRefContainer& WithOutOfBand(const fwRefContainer& server) - { - return WithOutOfBand(server); - } - template const fwRefContainer& WithOutOfBandImpl(const fwRefContainer& server) { @@ -101,5 +95,11 @@ namespace fx return server; } + + template + const fwRefContainer& WithOutOfBand(const fwRefContainer& server) + { + return WithOutOfBandImpl(server); + } } }