Hello, FX wrote:
window_vector.cc:1033:21: error: call to member function 'insert' is ambiguous
{ year_string.insert( 0U, 1, '0' + ( year % 10 ) ); year /= 10; }
~~~~~~~~~~~~^~~~~~
Thanks. Does adding a 'U' to the second argument fix the problem?
{ year_string.insert( 0U, 1U, '0' + ( year % 10 ) ); year /= 10; }
Best regards,
Antonio.
_______________________________________________
Bug-moe mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-moe
