Skip to content
Snippets Groups Projects
Unverified Commit 236bb00e authored by Guilhem Saurel's avatar Guilhem Saurel Committed by GitHub
Browse files

Merge pull request #113 from florent-lamiraux/devel

[Entity] Increase max size of signal name.
parents 66162cb6 9d8ba7f1
No related branches found
No related tags found
No related merge requests found
Pipeline #27967 passed
...@@ -61,7 +61,7 @@ void Entity::signalRegistration(const SignalArray<int> &signals) { ...@@ -61,7 +61,7 @@ void Entity::signalRegistration(const SignalArray<int> &signals) {
SignalBase<int> &sig = signals[i]; SignalBase<int> &sig = signals[i];
// const string& signame = sig.getName (); // const string& signame = sig.getName ();
istringstream iss(sig.getName()); istringstream iss(sig.getName());
const int SIZE = 128; const int SIZE = 4096;
char buffer[SIZE]; char buffer[SIZE];
while (iss.good()) { while (iss.good()) {
iss.getline(buffer, SIZE, ':'); 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