summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-02-16 12:09:57 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-02-16 12:09:57 +0100
commit785cca646211feed9c238cf8d219687b85552546 (patch)
treece7ec63a3dd135873616dbe8927bc7dc91aa2474
parent56cba7ad62f51463ddaf89894db16cabc2193b9c (diff)
downloadATCD-785cca646211feed9c238cf8d219687b85552546.tar.gz
Add constructor to make codacy happy
* ACE/tests/Compiler_Features_38_Test.cpp:
-rw-r--r--ACE/tests/Compiler_Features_38_Test.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ACE/tests/Compiler_Features_38_Test.cpp b/ACE/tests/Compiler_Features_38_Test.cpp
index ff1a21abb51..b2a03655833 100644
--- a/ACE/tests/Compiler_Features_38_Test.cpp
+++ b/ACE/tests/Compiler_Features_38_Test.cpp
@@ -9,6 +9,7 @@ template <typename T>
class Foo_T
{
public:
+ Foo_T () {};
typedef T& T_elem;
T_elem operator[] (long) { return member; }
operator T *& () { return & member; };