The use of the static keyword is deprecated when declaring objects in a namespace scope....

- The C++ Standard, ISO/IEC 14882:1998, section 7.3.1.1 paragraph 2

Cherry-picked from: a16596e1c16c3d5509d6d3f37ed9287ea61ef9df

Signed-off-by: Luke Dashjr <luke-jr+git@utopios.org>
pull/29/head
Ingo Klöcker 16 years ago committed by Michele Calgaro
parent 738d19c1eb
commit 147bb5982f
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -95,8 +95,8 @@ extern "C" {
#define IMAP_PROTOCOL "imap"
#define IMAP_SSL_PROTOCOL "imaps"
static const int ImapPort = 143;
static const int ImapsPort = 993;
const int ImapPort = 143;
const int ImapsPort = 993;
using namespace TDEIO;

Loading…
Cancel
Save