Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 506170
Collapse All | Expand All

(-)include/SquidNew.h (-1 / +1 lines)
Lines 31-37 Link Here
31
#ifndef SQUID_NEW_H
31
#ifndef SQUID_NEW_H
32
#define SQUID_NEW_H
32
#define SQUID_NEW_H
33
33
34
#if !defined(__SUNPRO_CC) && !defined(__clang__)
34
#if 0 && !defined(__SUNPRO_CC) && !defined(__clang__)
35
/* Any code using libstdc++ must have externally resolvable overloads
35
/* Any code using libstdc++ must have externally resolvable overloads
36
 * for void * operator new - which means in the .o for the binary,
36
 * for void * operator new - which means in the .o for the binary,
37
 * or in a shared library. static libs don't propogate the symbol
37
 * or in a shared library. static libs don't propogate the symbol
(-)src/icmp/IcmpConfig.h (-1 / +1 lines)
Lines 20-26 Link Here
20
     * alongside any custom parsing routines needed for this component.
20
     * alongside any custom parsing routines needed for this component.
21
     * First though, the whole global Config dependancy tree needs fixing */
21
     * First though, the whole global Config dependancy tree needs fixing */
22
    IcmpConfig() : program(NULL), enable(0) {};
22
    IcmpConfig() : program(NULL), enable(0) {};
23
    ~IcmpConfig() { if (program) delete program; program = NULL; };
23
    ~IcmpConfig() { safe_free(program); };
24
24
25
    /* variables */
25
    /* variables */
26
26

Return to bug 506170