summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/DataEncoder.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary <limits> includes.Jim Ingham2016-03-151-1/+0
| | | | llvm-svn: 263588
* Let's not convert from UINT32_MAX to the std::numeric_limits version.Jim Ingham2016-03-121-7/+7
| | | | llvm-svn: 263333
* Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; ↵Eugene Zelenko2016-03-021-36/+37
| | | | | | other minor fixes. llvm-svn: 262441
* Make lldb::endian::InlHostByteOrder() private.Bruce Mitchener2015-11-071-5/+5
| | | | | | | | | | | | | | | | | | Summary: Since this is within the lldb namespace, the compiler tries to export a symbol for it. Unfortunately, since it is inlined, the symbol is hidden and this results in a mess of warnings when building on OS X with cmake. Moving it to the lldb_private namespace eliminates that problem. Reviewers: clayborg Subscribers: emaste, lldb-commits Differential Revision: http://reviews.llvm.org/D14417 llvm-svn: 252396
* Fixed a ton of gcc compile warningsVince Harron2015-05-131-7/+7
| | | | | | | | | | Removed some unused variables, added some consts, changed some casts to const_cast. I don't think any of these changes are very controversial. Differential Revision: http://reviews.llvm.org/D9674 llvm-svn: 237218
* Fixed the ValidOffsetForDataOfSize() to use simpler logic. Fixed ↵Greg Clayton2013-03-211-26/+0
| | | | | | DataExtractor::BytesLeft() to return the correct value. llvm-svn: 177616
* Forgot to write out the NULL terminator when putting C string value intoGreg Clayton2011-09-011-1/+1
| | | | | | | | a data using DataEncoder. Added DataEncoder to the lldb-forward.h file. llvm-svn: 138950
* Added a DataEncoder class for the new IR evaluation expression parser so itGreg Clayton2011-09-011-0/+361
can reserve a block of memory and store stuff into it. llvm-svn: 138949
OpenPOWER on IntegriCloud