Skip to content
Snippets Groups Projects
Commit 9d8ba7f1 authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

[Entity] Increase max size of signal name.

parent 66162cb6
No related branches found
No related tags found
No related merge requests found
Pipeline #27965 passed
......@@ -61,7 +61,7 @@ void Entity::signalRegistration(const SignalArray<int> &signals) {
SignalBase<int> &sig = signals[i];
// const string& signame = sig.getName ();
istringstream iss(sig.getName());
const int SIZE = 128;
const int SIZE = 4096;
char buffer[SIZE];
while (iss.good()) {
iss.getline(buffer, SIZE, ':');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment