Ignore:
Timestamp:
02/26/18 19:57:44 (6 years ago)
Author:
Maciej Komosinski
Message:

Introduced different function names in C++ instead of overloading (with the same number of arguments) so that javascript is able to discriminate them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/genetics/f1/conv_f1.cpp

    r732 r743  
    454454        else if ((i = last_f1_neuro->extraProperties().findIdn(begin, colon - begin)) >= 0)
    455455        {
    456                 last_f1_neuro->extraProperties().set(i, colon + 1);
     456                last_f1_neuro->extraProperties().setFromString(i, colon + 1);
    457457        }
    458458        else if (isupper(begin[0]) || strchr("*|@", begin[0]))
Note: See TracChangeset for help on using the changeset viewer.