Sync develop with master #4

Merged
RoshanSyed merged 144 commits from master into develop 2019-12-16 15:20:56 +00:00
Showing only changes of commit 78b511c11e - Show all commits

View file

@ -27,7 +27,7 @@ namespace fc {
}
}
fixed_string( const char* str ) {
int l = strlen(str);
auto l = strlen(str);
if( l <= sizeof(data) )
memcpy( (char*)&data, str, l );
else {