Commit 039ac474fce35885b58c31c291e8cc3941414e29

Authored by Benjamin Renard
1 parent b958ac29

Do not init a non-static variable in header file (not supported by gcc < c++11)

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/DDClientLibCpp/INCLUDE/DD.hh
... ... @@ -39,7 +39,7 @@ private:
39 39 public:
40 40  
41 41 DD_data_t *CurrentData; /* Data block received recently */
42   - int _varNumber = 0;
  42 + int _varNumber;
43 43  
44 44 int SocketID; /* Global socket id for this communication session */
45 45 char UserName[USRLENGTH]; /* string for user name */
... ...