diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2015-06-13 13:52:09 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2015-06-13 13:52:09 +0000 |
commit | 1b5decaadb4fa2e8838456f4078734af8f5f6cf6 (patch) | |
tree | 5b45b96dd96d028b368e0b6d16148c8a4a3af64f /www/libecap/files/patch-src-libecap-common-area.cc | |
parent | - Add LICENSE (diff) |
- Update to 1.0.1
- Add my LOCAL to MASTER_SITES
- Remove DOCS option
- Use = instead of +=
- Reformat pkg-descr
- Cleanup PLIST
- Take maintainership
Changes: http://www.measurement-factory.com/tmp/ecap/libecap_change.log
Notes
Notes:
svn path=/head/; revision=389371
Diffstat (limited to 'www/libecap/files/patch-src-libecap-common-area.cc')
-rw-r--r-- | www/libecap/files/patch-src-libecap-common-area.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/libecap/files/patch-src-libecap-common-area.cc b/www/libecap/files/patch-src-libecap-common-area.cc new file mode 100644 index 000000000000..8920978554b1 --- /dev/null +++ b/www/libecap/files/patch-src-libecap-common-area.cc @@ -0,0 +1,13 @@ +--- src/libecap/common/area.cc.orig 2015-05-13 16:00:35 UTC ++++ src/libecap/common/area.cc +@@ -14,8 +14,8 @@ const libecap::size_type libecap::nsize + + + libecap::Area libecap::Area::FromTempString(const std::string &tmp) { +- shared_ptr<StdStringAreaDetails> details(new StdStringAreaDetails(tmp)); +- return Area(details->owner_.data(), details->owner_.size(), details); ++ shared_ptr<StdStringAreaDetails> detls(new StdStringAreaDetails(tmp)); ++ return Area(detls->owner_.data(), detls->owner_.size(), detls); + } + + libecap::Area libecap::Area::FromTempBuffer(const char *start, libecap::size_type size) { |