1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/audio/tse3/files/patch-src__tse3__file__XML.h
Martin Wilke ce5f529143 - Fix build with GCC 4.x
PR:		133310
Submitted by:	Ports Fury
2009-04-03 08:52:54 +00:00

10 lines
530 B
C++

--- src/tse3/file/XML.h Tue Aug 23 08:37:53 2005
+++ src/tse3/file/XML.h Sun Sep 11 20:29:45 2005
@@ -154,5 +154,5 @@
void element(const std::string &name, const char *value);
void element(const std::string &name, int value);
- void element(const std::string &name, unsigned int value);
+ void element(const std::string &name, size_t value);
void element(const std::string &name, bool value);