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>
(cherry picked from commit 147bb5982f)
r14.0.x
Ingo Klöcker 16 years ago committed by Michele Calgaro
parent 17fd5b5532
commit 8a072e81fe
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