Code:
class foo
{
  public:
  foo();
  bar(char m[4] = m_matrix);
  private:
  char m_matrix[4];
};
Is it possible to set a member variable (non-static) as a default parameter like Im trying to do in the bar(..) method above ? If so, how ? Appreciate any help.