Changeset 781 for cpp


Ignore:
Timestamp:
05/14/18 17:56:24 (6 years ago)
Author:
Maciej Komosinski
Message:

Fixed indentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/util/list.h

    r733 r781  
    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-2018  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
     
    105105        int find(const T& e) const ///< return position of element, or -1 if not found
    106106        {
    107                 for (int i = 0; i<size(); i++) if (mem[i] == e) return i;   return -1;
     107                for (int i = 0; i<size(); i++) if (mem[i] == e) return i;
     108                return -1;
    108109        }
    109110        void append(const T& data) ///< add 1 element
Note: See TracChangeset for help on using the changeset viewer.