source: dev/branches/egtra/ab5.0/jenga/include/common/VectorSupporter.h@ 818

Last change on this file since 818 was 818, checked in by イグトランス (egtra), 13 years ago

Jenga/common/String.hに対するテストを追加

File size: 164 bytes
Line 
1#pragma once
2
3namespace Jenga{
4namespace Common{
5
6
7template<class T> void EraseVectorItem( T &v, int index )
8{
9 v.erase(v.begin() + index);
10}
11
12
13
14}
15}
Note: See TracBrowser for help on using the repository browser.