Project

General

Profile

Revision c460d4c2

IDc460d4c280c6881e667db7bad45925ffeef28b5e
Parent 94a3af93
Child 95bede66

Added by Priya about 12 years ago

Changed deconstructor for behavior list because I discovered vector::empty which should be used instead.

View differences:

scout/libscout/src/BehaviorList.cpp
9 9

  
10 10
BehaviorList::~BehaviorList()
11 11
{
12
  while((int)behavior_list.size() != 0)
12
  while(!behavior_list.empty())
13 13
    behavior_list.pop_back();
14 14
}

Also available in: Unified diff