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

Collapse All | Expand All

(-)file_not_specified_in_diff (-5 / +5 lines)
Line  Link Here
0
-- src/mongo/db/projection.cpp
0
++ src/mongo/db/projection.cpp
Lines 76-82 Link Here
76
                    // initialize new Matcher object(s)
76
                    // initialize new Matcher object(s)
77
77
78
                    _matchers.insert( make_pair( mongoutils::str::before( e.fieldName(), '.' ),
78
                    _matchers.insert( make_pair( mongoutils::str::before( e.fieldName(), '.' ),
79
                                                 new Matcher( e.wrap(), true ) ) );
79
                                                 shared_ptr<Matcher> ( new Matcher( e.wrap(), true ) ) ) );
80
                    add( e.fieldName(), true );
80
                    add( e.fieldName(), true );
81
                }
81
                }
82
                else {
82
                else {
83
-- src/mongo/util/processinfo_linux2.cpp
83
++ src/mongo/util/processinfo_linux2.cpp
Lines 59-68 Link Here
59
                               "%lu "  /* start_time */
59
                               "%lu "  /* start_time */
60
                               "%lu "
60
                               "%lu "
61
                               "%ld " // rss
61
                               "%ld " // rss
62
                               "%lu %"KLF"u %"KLF"u %"KLF"u %"KLF"u %"KLF"u "
62
                               "%lu %" KLF "u %" KLF "u %" KLF "u %" KLF "u %" KLF "u "
63
                               /*
63
                               /*
64
                                 "%*s %*s %*s %*s "
64
                                 "%*s %*s %*s %*s "
65
                                 "%"KLF"u %*lu %*lu "
65
                                 "%" KLF "u %*lu %*lu "
66
                                 "%d %d "
66
                                 "%d %d "
67
                                 "%lu %lu"
67
                                 "%lu %lu"
68
                               */
68
                               */

Return to bug 441816