diff options
author | aunsane <aunsane@gmail.com> | 2018-02-21 00:05:54 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-02-21 18:40:13 +0300 |
commit | fb9f17d1290be657ea8cc85dd02c8419cad1d9c4 (patch) | |
tree | 4c0fd9c784f1e15456bf09d08a8fa0d52474455b /plugins/AVS/src/main.cpp | |
parent | b1b10b4095c4e569cfeed632c2cfa08be766a01b (diff) |
AVS: C++'11 iterators
Diffstat (limited to 'plugins/AVS/src/main.cpp')
-rw-r--r-- | plugins/AVS/src/main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index 774b5c5218..fd982164a1 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -52,9 +52,7 @@ static int ComparePicture(const protoPicCacheEntry *p1, const protoPicCacheEntry return mir_strcmp(p1->szProtoname, p2->szProtoname);
}
-OBJLIST<protoPicCacheEntry>
-g_ProtoPictures(10, ComparePicture),
-g_MyAvatars(10, ComparePicture);
+OBJLIST<protoPicCacheEntry> g_ProtoPictures(10, ComparePicture), g_MyAvatars(10, ComparePicture);
char *g_szMetaName = nullptr;
|