index
:
kakoune.git
master
Unnamed repository; edit this file 'description' to name the repository.
Mike Vink
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
interned_string.hh
Age
Commit message (
Collapse
)
Author
2015-01-15
Replace InternedStrings with SharedString, shared_ptr based
Maxime Coste
2015-01-13
Use uint32_t for interned strings slots
Maxime Coste
2015-01-13
Add interned string stats in debug command
Maxime Coste
2015-01-11
Track some more memory
Maxime Coste
2015-01-07
Add initial memory domain allocation tracking support
Maxime Coste
2014-12-30
Use a struct rather than a std::pair for InternedString DataAndRefCount
Maxime Coste
2014-12-23
Remove trailing blank lines
Maxime Coste
2014-12-16
Rework hashing, use a more extensible framework similar to n3876 proposal
Maxime Coste
std::hash specialization is a pain to work with, stop using that, and just specialize a 'size_t hash_value(const T&)' free function.
2014-12-08
cleanup in string.hh
Maxime Coste
2014-10-28
Style fixes
Maxime Coste
2014-10-28
Add noexcept spec to move constructor and move assign
Maxime Coste
2014-10-28
mark InternedString move constructor noexcept
Maxime Coste
2014-10-28
Fix interned string hashing, we need to hash content
Maxime Coste
2014-10-23
Fix slow InternedString copy constructor
Maxime Coste
2014-10-07
WordDB: Use interned strings pointing directly into the buffer line data
Maxime Coste
2014-10-05
InternedStrings know their slots
Maxime Coste
2014-10-03
Use InternedStrings for buffer contents
Maxime Coste
2014-10-01
Add support for interned strings
Maxime Coste
Use interned strings for Modification contents and word database. Interned strings are guaranteed not to move in memory and are reference counted.