Changeset 348 for cpp/frams/neuro/neuroimpl.cpp
- Timestamp:
- 04/09/15 23:51:28 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/neuro/neuroimpl.cpp
r288 r348 73 73 if (!ni) { errorcount++; 74 74 FMprintf("NeuroNetImpl","create",FMLV_WARN,"neuron #%d (%s) implementation not available", 75 i, (const char*)n->getClassName());75 i,n->getClassName().c_str()); 76 76 continue; } // implementation not available?! 77 77 ni->owner=this; … … 88 88 { ni->status=NeuroImpl::InitError; errorcount++; 89 89 FMprintf("NeuroNetImpl","create",FMLV_WARN,"neuron #%d (%s) initialization failed", 90 i, (const char*)n->getClassName());90 i,n->getClassName().c_str()); 91 91 continue; } 92 92 ni->status=NeuroImpl::InitOk;
Note: See TracChangeset
for help on using the changeset viewer.