◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2607 'identifier' : cannot implicitly convert a 'type1' to a nonconst 'type2' The specified type was converted to a nonconst type <type2>. The initializer for a reference to <type2> must be one of the following: ■ An l-value of type <type2> ■ A type derived from <type2> for which <type2> is an accessible base If the reference is to a const type, then an object of that type will be created and initialized with the initializer. A temporary object of type <type2> was required but could not be initialized with a nonconst reference <type2>&. -♦-