Mercurial > hg > orthanc
comparison Core/Images/Font.cpp @ 1616:644c32c07306
cppcheck
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 16 Sep 2015 16:00:50 +0200 |
parents | 96582230ddcb |
children | 3727a09e7b53 |
comparison
equal
deleted
inserted
replaced
1615:c40fe92a68e7 | 1616:644c32c07306 |
---|---|
43 namespace Orthanc | 43 namespace Orthanc |
44 { | 44 { |
45 Font::~Font() | 45 Font::~Font() |
46 { | 46 { |
47 for (Characters::iterator it = characters_.begin(); | 47 for (Characters::iterator it = characters_.begin(); |
48 it != characters_.end(); it++) | 48 it != characters_.end(); ++it) |
49 { | 49 { |
50 delete it->second; | 50 delete it->second; |
51 } | 51 } |
52 } | 52 } |
53 | 53 |