summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Need to link with libatomic.Henning Baldersheim2017-05-051-0/+1
* Merge pull request #2404 from yahoo/geirst/refactor-searchlib-docstore-code-a...Henning Baldersheim2017-05-0517-273/+381
|\
| * Move StoreByBucket tests to separate test file.Geir Storli2017-05-055-62/+93
| * Move chunk tests to separate test file.Geir Storli2017-05-055-51/+81
| * Move LidInfo tests to separate test file.Geir Storli2017-05-055-56/+79
| * Move LidInfo and related classes to separate .h and .cpp files.Geir Storli2017-05-056-104/+128
* | Merge pull request #2406 from yahoo/vekterli/fix-remaining-inline-warnings-fo...Henning Baldersheim2017-05-0522-12/+52
|\ \
| * | Fix remaining inline warnings for compilation with -OgTor Brede Vekterli2017-05-0522-12/+52
* | | Merge pull request #2402 from yahoo/balder/some-other-gcc7-issuesHenning Baldersheim2017-05-056-35/+35
|\ \ \ | |/ / |/| |
| * | Move code from .hpp to cpp file to avoid unused anonymous function complaints...Henning Baldersheim2017-05-054-32/+31
| * | gcc 7 needs to make sure that what you print will fit in your buffer if it canHenning Baldersheim2017-05-051-1/+2
| * | No dynamic exceptions in ISO c++1z, gcc 7Henning Baldersheim2017-05-051-2/+2
* | | Merge pull request #2400 from yahoo/revert-2393-revert-2390-hakon/bootstrap-l...hakonhall2017-05-053-8/+36
|\ \ \
| * | | Remove reference to java-buildHåkon Hallingstad2017-05-051-1/+1
| * | | Make "java" mode like (former) "java-build": Will build everything unless pas...Håkon Hallingstad2017-05-051-14/+9
| * | | Found likely cause of problem - should already be fixed but update commentHåkon Hallingstad2017-05-051-3/+5
| * | | Loop over initial modules using -NHåkon Hallingstad2017-05-051-1/+13
| * | | Revert "Revert "Bootstrap local Java builds""hakonhall2017-05-053-18/+37
* | | | Merge pull request #2405 from yahoo/revert-2247-gjoranv/remove-default-ctorgjoranv2017-05-051-9/+3
|\ \ \ \ | |_|_|/ |/| | |
| * | | Revert "Remove the default ctor for the generated config classes."gjoranv2017-05-051-9/+3
|/ / /
* | | Merge pull request #2403 from yahoo/balder/breakfix-uniqstoreHenning Baldersheim2017-05-051-1/+8
|\ \ \
| * | | Repair mouse marking accident.Henning Baldersheim2017-05-051-1/+8
|/ / /
* | | Merge pull request #2399 from yahoo/geirst/make-searchlib-compile-with-OgHenning Baldersheim2017-05-0532-7/+86
|\ \ \ | |_|/ |/| |
| * | Make searchlib compile with '-Og'.Geir Storli2017-05-0532-7/+86
* | | Merge pull request #2247 from yahoo/gjoranv/remove-default-ctorgjoranv2017-05-051-3/+9
|\ \ \
| * | | Remove the default ctor for the generated config classes.gjoranv2017-04-241-3/+9
* | | | Merge pull request #2398 from yahoo/balder/register-is-not-allowed-in-iso-c++1zHenning Baldersheim2017-05-0519-43/+42
|\ \ \ \
| * | | | Use fresh initialiser style covering both Objects and primitives.Henning Baldersheim2017-05-051-18/+1
| * | | | Native types have no constructors and needs an explicit default value.Henning Baldersheim2017-05-051-1/+11
| * | | | ISO C++1z does not allow ‘register’ storage class specifier (gcc 7)Henning Baldersheim2017-05-051-3/+3
| * | | | Generate code when you see the template implementation.Henning Baldersheim2017-05-052-0/+3
| * | | | include <functional> explicitHenning Baldersheim2017-05-051-1/+3
| * | | | include <functional> explicitHenning Baldersheim2017-05-051-0/+1
| * | | | ISO C++1z does not allow ‘register’ storage class specifier (gcc 7)Henning Baldersheim2017-05-051-9/+4
| * | | | gcc 7 detected unused variable. Use it.Henning Baldersheim2017-05-051-1/+3
| * | | | gcc 7 does not like that you use nullptr/NULL/0 as input to memcpy, even if s...Henning Baldersheim2017-05-052-5/+5
| * | | | Template code must be visible as we do not generate it explicit in this case.Henning Baldersheim2017-05-051-0/+1
| * | | | pop_back is what we want.... gcc 7 complained that _children.size() - 1 could...Henning Baldersheim2017-05-051-1/+1
| * | | | gcc 7 checks against nullptr where it can.Henning Baldersheim2017-05-052-2/+2
| * | | | gcc 7 complains about 'type punned pointer'Henning Baldersheim2017-05-051-1/+1
| * | | | gcc 7 is better at catching uninitialized memory.Henning Baldersheim2017-05-051-1/+1
| * | | | ISO C++1z does not allow ‘register’ storage class specifier (gcc 7)Henning Baldersheim2017-05-051-4/+4
| * | | | gcc 7 does not provide <functional> by default.Henning Baldersheim2017-05-051-3/+4
| * | | | gcc 7 does not provide <functional> by default.Henning Baldersheim2017-05-051-4/+5
| | |/ / | |/| |
* | | | Merge pull request #2397 from yahoo/balder/deinline-due-to-gcc7Henning Baldersheim2017-05-0514-111/+141
|\ \ \ \ | |_|_|/ |/| | |
| * | | Deinline.Henning Baldersheim2017-05-054-0/+8
| * | | hide and deinline template instantiations.Henning Baldersheim2017-05-052-110/+104
| * | | Deinline after gcc 7 adviseHenning Baldersheim2017-05-056-1/+22
| * | | Deinline for gcc 7Henning Baldersheim2017-05-052-0/+7
| |/ /
* | | Merge pull request #2396 from yahoo/balder/deiniline-copy-and-assignmentHenning Baldersheim2017-05-051-40/+35
|\ \ \ | |/ / |/| |