clang compatibility
[deliverable/titan.core.git] / core / Array.hh
index b04a6c3c6c79010e0d51bd871ec6bbd4c5ebfb6b..9de9e01d39b8d36e1be0288e9437f4f4bcdb2cfb 100644 (file)
@@ -184,7 +184,10 @@ class VALUE_ARRAY : public Base_Type
 public:
   // This class use the compiler-generated copy constructor and
   // copy assignment.
-
+    
+  // User defined default constructor, because with clang the text2ttcn test
+  // won't compile
+  VALUE_ARRAY() : array_elements(){};
   boolean operator==(const VALUE_ARRAY& other_value) const;
   inline boolean operator!=(const VALUE_ARRAY& other_value) const
     { return !(*this == other_value); }
This page took 0.022895 seconds and 5 git commands to generate.