Cleanup after RYML merge (#6785)
Speeded things up even more by making use of C++'s reference feature. Fixed #6770 warning while at it. Added back support for case insensitive booleans. Fixed a very rare issue with cached databases. Removed .children() calls Added back type safety reports Added ryml to login-server makefile Thanks to @aleos89, @Atemo and @idk-whoami
This commit is contained in:
@@ -2356,7 +2356,7 @@ const std::string ConstantDatabase::getDefaultLocation(){
|
||||
return std::string(db_path) + "/const.yml";
|
||||
}
|
||||
|
||||
uint64 ConstantDatabase::parseBodyNode( const ryml::NodeRef node ) {
|
||||
uint64 ConstantDatabase::parseBodyNode( const ryml::NodeRef& node ) {
|
||||
std::string constant_name;
|
||||
|
||||
if (!this->asString( node, "Name", constant_name ))
|
||||
|
||||
Reference in New Issue
Block a user