WIP: somethings wrong.. #19
@ -220,4 +220,7 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<typename T, uint16_t vectorSize>
|
||||||
|
using gp_vec_t = GlobPoolVector<T, vectorSize>;
|
||||||
|
|
||||||
#endif /* POOLVECTOR_H_ */
|
#endif /* POOLVECTOR_H_ */
|
||||||
|
@ -67,9 +67,9 @@ void ObjectManager::initialize() {
|
|||||||
return_value = it->second->initialize();
|
return_value = it->second->initialize();
|
||||||
if ( return_value != RETURN_OK ) {
|
if ( return_value != RETURN_OK ) {
|
||||||
object_id_t var = it->first;
|
object_id_t var = it->first;
|
||||||
sif::error << "Object " << std::hex << (int) var
|
sif::error << "Object 0x" << std::hex << std::setw(8) <<
|
||||||
<< " failed to initialize with code 0x" << return_value
|
std::setfill('0')<< var << " failed to initialize " <<
|
||||||
<< std::dec << std::endl;
|
"with code 0x" << return_value << std::dec << std::endl;
|
||||||
error_count++;
|
error_count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user