Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 269239 | Differences between
and this patch

Collapse All | Expand All

(-)pan-0.133/pan/general/log.cc (+1 lines)
Lines 16-25 Link Here
16
 * along with this program; if not, write to the Free Software
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 */
18
 */
19
19
20
#include <config.h>
20
#include <config.h>
21
#include <cstdio>
21
#include <iostream>
22
#include <iostream>
22
#include <cstdarg>
23
#include <cstdarg>
23
#include "log.h"
24
#include "log.h"
24
25
25
using namespace pan;
26
using namespace pan;
(-)pan-0.133/pan/general/progress.cc (+1 lines)
Lines 16-25 Link Here
16
 * along with this program; if not, write to the Free Software
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 */
18
 */
19
19
20
#include <config.h>
20
#include <config.h>
21
#include <cstdio>
21
#include <cstdarg>
22
#include <cstdarg>
22
#include "progress.h"
23
#include "progress.h"
23
#include "string-view.h"
24
#include "string-view.h"
24
25
25
using namespace pan;
26
using namespace pan;
(-)pan-0.133/pan/tasks/nntp-pool.cc (+1 lines)
Lines 16-25 Link Here
16
 * along with this program; if not, write to the Free Software
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 */
18
 */
19
19
20
#include <config.h>
20
#include <config.h>
21
#include <cstdio>
21
#include <ctime>
22
#include <ctime>
22
#include <glib/gi18n.h>
23
#include <glib/gi18n.h>
23
#include <pan/general/debug.h>
24
#include <pan/general/debug.h>
24
#include <pan/general/log.h>
25
#include <pan/general/log.h>
25
#include <pan/general/macros.h>
26
#include <pan/general/macros.h>
(-)pan-0.133/pan/tasks/nntp.cc (+1 lines)
Lines 16-25 Link Here
16
 * along with this program; if not, write to the Free Software
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 */
18
 */
19
19
20
#include <config.h>
20
#include <config.h>
21
#include <cstdio>
21
#include <cassert>
22
#include <cassert>
22
#include <cstdarg>
23
#include <cstdarg>
23
#include <cstdlib> // abort, atoi, strtoul
24
#include <cstdlib> // abort, atoi, strtoul
24
extern "C" {
25
extern "C" {
25
  #include <glib.h>
26
  #include <glib.h>
(-)pan-0.133/pan/usenet-utils/numbers.cc (+1 lines)
Lines 16-25 Link Here
16
 * along with this program; if not, write to the Free Software
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 */
18
 */
19
19
20
#include <config.h>
20
#include <config.h>
21
#include <cstdio>
21
#include <cctype>
22
#include <cctype>
22
#include <pan/general/string-view.h>
23
#include <pan/general/string-view.h>
23
#include "numbers.h"
24
#include "numbers.h"
24
#include <algorithm>
25
#include <algorithm>
25
26

Return to bug 269239