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_ */
|
||||
|
@ -67,9 +67,9 @@ void ObjectManager::initialize() {
|
||||
return_value = it->second->initialize();
|
||||
if ( return_value != RETURN_OK ) {
|
||||
object_id_t var = it->first;
|
||||
sif::error << "Object " << std::hex << (int) var
|
||||
<< " failed to initialize with code 0x" << return_value
|
||||
<< std::dec << std::endl;
|
||||
sif::error << "Object 0x" << std::hex << std::setw(8) <<
|
||||
std::setfill('0')<< var << " failed to initialize " <<
|
||||
"with code 0x" << return_value << std::dec << std::endl;
|
||||
error_count++;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user