Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
48f76dbb
Commit
48f76dbb
authored
Sep 29, 2019
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unneeded stuff
parent
ca3dacba
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
4 additions
and
1028 deletions
+4
-1028
src/text/boost/config.hpp
src/text/boost/config.hpp
+0
-3
src/text/boost/text/config.hpp
src/text/boost/text/config.hpp
+1
-3
src/text/boost/text/detail/algorithm.hpp
src/text/boost/text/detail/algorithm.hpp
+0
-580
src/text/boost/text/detail/iterator.hpp
src/text/boost/text/detail/iterator.hpp
+0
-424
src/text/boost/text/detail/sentinel_tag.hpp
src/text/boost/text/detail/sentinel_tag.hpp
+0
-12
src/text/boost/text/grapheme_break.hpp
src/text/boost/text/grapheme_break.hpp
+1
-2
src/text/grapheme_break.cpp
src/text/grapheme_break.cpp
+2
-4
No files found.
src/text/boost/config.hpp
deleted
100644 → 0
View file @
ca3dacba
#ifndef BOOST_CXX14_CONSTEXPR
# define BOOST_CXX14_CONSTEXPR
#endif
src/text/boost/text/config.hpp
View file @
48f76dbb
#ifndef BOOST_TEXT_CONFIG_HPP
#define BOOST_TEXT_CONFIG_HPP
#include <boost/config.hpp>
/** There are ICU-based implementations of many operations, but those are only
defined when BOOST_TEXT_HAS_ICU is nonzero. If you define this, you must
...
...
@@ -38,7 +36,7 @@
# define BOOST_TEXT_CXX14_CONSTEXPR
# define BOOST_TEXT_NO_CXX14_CONSTEXPR
#else
# define BOOST_TEXT_CXX14_CONSTEXPR
BOOST_CXX14_CONSTEXPR
# define BOOST_TEXT_CXX14_CONSTEXPR
# if defined(BOOST_NO_CXX14_CONSTEXPR)
# define BOOST_TEXT_NO_CXX14_CONSTEXPR
# endif
...
...
src/text/boost/text/detail/algorithm.hpp
deleted
100644 → 0
View file @
ca3dacba
This diff is collapsed.
Click to expand it.
src/text/boost/text/detail/iterator.hpp
deleted
100644 → 0
View file @
ca3dacba
This diff is collapsed.
Click to expand it.
src/text/boost/text/detail/sentinel_tag.hpp
deleted
100644 → 0
View file @
ca3dacba
#ifndef BOOST_TEXT_DETAIL_SENTINEL_TAG_HPP
#define BOOST_TEXT_DETAIL_SENTINEL_TAG_HPP
namespace
boost
{
namespace
text
{
namespace
detail
{
struct
sentinel_tag
{};
struct
non_sentinel_tag
{};
}}}
#endif
src/text/boost/text/grapheme_break.hpp
View file @
48f76dbb
#ifndef BOOST_TEXT_GRAPHEME_BREAK_HPP
#define BOOST_TEXT_GRAPHEME_BREAK_HPP
#include <boost/text/config.hpp>
#include <array>
#include <unordered_map>
#include <stdint.h>
#define BOOST_TEXT_DECL
namespace
boost
{
namespace
text
{
...
...
src/text/grapheme_break.cpp
View file @
48f76dbb
...
...
@@ -2,8 +2,6 @@
#include <boost/text/grapheme_break.hpp>
#include <boost/text/detail/break_prop_iter.hpp>
#include <boost/assert.hpp>
#include <algorithm>
#include <array>
#include <unordered_map>
...
...
@@ -3583,8 +3581,8 @@ std::copy(
compressed
.
begin
(),
compressed
.
end
(),
lzw_to_break_prop_iter
<
grapheme_property
>
(
retval
,
buf
));
BOOST_ASSERT
(
buf
.
empty
());
BOOST_ASSERT
(
retval
.
size
()
==
15958
);
assert
(
buf
.
empty
());
assert
(
retval
.
size
()
==
15958
);
return
retval
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment