Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: GPSProvider.cpp
- Revision:
- 4:f35227b1f341
- Parent:
- 3:47aaf0ebde35
--- a/GPSProvider.cpp Tue Nov 04 11:31:49 2014 +0000 +++ b/GPSProvider.cpp Fri Nov 07 08:24:48 2014 +0000 @@ -89,3 +89,12 @@ { impl->lpmGetImmediateLocation(); } + +GPSProvider::~GPSProvider() +{ + if (impl) { + delete impl; + } + + impl = NULL; +}