From 6f291e245f3f90b8c2c8e5079cd4411a345769c3 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Wed, 31 Aug 2022 14:25:14 +0200 Subject: [PATCH] fix(examples): warning: declaration `class fair::mq::Device` does not declare anything --- examples/custom-controller/MyDevice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom-controller/MyDevice.h b/examples/custom-controller/MyDevice.h index 93d701b7..2ecf1c07 100644 --- a/examples/custom-controller/MyDevice.h +++ b/examples/custom-controller/MyDevice.h @@ -13,7 +13,7 @@ namespace example { -using MyDevice = typename fair::mq::Device; +using MyDevice = fair::mq::Device; } // namespace example