git://developer.intra2net.com
/
libt2n
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
8fccaec
)
Silence gcc warning about initialization order
author
Thomas Jarosch
<thomas.jarosch@intra2net.com>
Fri, 16 Jul 2010 12:57:58 +0000 (14:57 +0200)
committer
Thomas Jarosch
<thomas.jarosch@intra2net.com>
Fri, 16 Jul 2010 12:57:58 +0000 (14:57 +0200)
src/container.hxx
patch
|
blob
|
blame
|
history
diff --git
a/src/container.hxx
b/src/container.hxx
index
7539e04
..
5aa6354
100644
(file)
--- a/
src/container.hxx
+++ b/
src/container.hxx
@@
-41,11
+41,11
@@
namespace libt2n
class result_container
{
private:
- enum result_type_t { regular, exception } result_type;
-
result *res;
t2n_exception *ex;
+ enum result_type_t { regular, exception } result_type;
+
friend class boost::serialization::access;
template<class Archive>
void serialize(Archive & ar, const unsigned int version);