equal
  deleted
  inserted
  replaced
  
    
    
    63       template <typename CPath>  | 
    63       template <typename CPath>  | 
    64       Path(const CPath& cpath) {} | 
    64       Path(const CPath& cpath) {} | 
    65   | 
    65   | 
    66       /// \brief Template assigment  | 
    66       /// \brief Template assigment  | 
    67       template <typename CPath>  | 
    67       template <typename CPath>  | 
    68       Path& operator=(const CPath& cpath) {} | 
    68       Path& operator=(const CPath& cpath) { | 
         | 
    69         ignore_unused_variable_warning(cpath);  | 
         | 
    70         return *this;  | 
         | 
    71       }  | 
    69   | 
    72   | 
    70       /// Length of the path ie. the number of arcs in the path.  | 
    73       /// Length of the path ie. the number of arcs in the path.  | 
    71       int length() const { return 0;} | 
    74       int length() const { return 0;} | 
    72   | 
    75   | 
    73       /// Returns whether the path is empty.  | 
    76       /// Returns whether the path is empty.  |