Ignore:
Timestamp:
07/03/20 00:37:13 (4 years ago)
Author:
Maciej Komosinski
Message:

Increased SString and std::string compatibility: introduced length(), size(), and capacity(), and removed legacy methods that have std::string equivalents

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/neuro/neurolibparam.cpp

    r790 r973  
    11// This file is a part of Framsticks SDK.  http://www.framsticks.com/
    2 // Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
     2// Copyright (C) 1999-2020  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
     
    3333static bool isGoodName(const SString& name)
    3434{
    35         for (int i = 0; i < name.len(); i++)
     35        for (int i = 0; i < name.length(); i++)
    3636                if (!isalnum(name[i])) return false;
    3737        return true;
Note: See TracChangeset for help on using the changeset viewer.