remove regex.hh, define Regex directly in string.hh
This commit is contained in:
parent
8febec0bcf
commit
bbce6b22a3
|
@ -3,7 +3,7 @@
|
||||||
#include "assert.hh"
|
#include "assert.hh"
|
||||||
#include "buffer.hh"
|
#include "buffer.hh"
|
||||||
#include "exception.hh"
|
#include "exception.hh"
|
||||||
#include "regex.hh"
|
#include "string.hh"
|
||||||
|
|
||||||
namespace Kakoune
|
namespace Kakoune
|
||||||
{
|
{
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include "window.hh"
|
#include "window.hh"
|
||||||
#include "file.hh"
|
#include "file.hh"
|
||||||
#include "client.hh"
|
#include "client.hh"
|
||||||
#include "regex.hh"
|
#include "string.hh"
|
||||||
#include "highlighter_registry.hh"
|
#include "highlighter_registry.hh"
|
||||||
#include "filter_registry.hh"
|
#include "filter_registry.hh"
|
||||||
#include "register_manager.hh"
|
#include "register_manager.hh"
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
#include "highlighters.hh"
|
#include "highlighters.hh"
|
||||||
|
|
||||||
#include "assert.hh"
|
#include "assert.hh"
|
||||||
#include "window.hh"
|
#include "window.hh"
|
||||||
#include "highlighter_registry.hh"
|
#include "highlighter_registry.hh"
|
||||||
#include "highlighter_group.hh"
|
#include "highlighter_group.hh"
|
||||||
#include "regex.hh"
|
#include "string.hh"
|
||||||
|
|
||||||
namespace Kakoune
|
namespace Kakoune
|
||||||
{
|
{
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#include "event_manager.hh"
|
#include "event_manager.hh"
|
||||||
#include "context.hh"
|
#include "context.hh"
|
||||||
#include "ncurses.hh"
|
#include "ncurses.hh"
|
||||||
#include "regex.hh"
|
#include "string.hh"
|
||||||
|
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
16
src/regex.hh
16
src/regex.hh
|
@ -1,16 +0,0 @@
|
||||||
#ifndef regex_hh_INCLUDED
|
|
||||||
#define regex_hh_INCLUDED
|
|
||||||
|
|
||||||
#include "string.hh"
|
|
||||||
|
|
||||||
#include <boost/regex.hpp>
|
|
||||||
|
|
||||||
namespace Kakoune
|
|
||||||
{
|
|
||||||
|
|
||||||
typedef boost::basic_regex<Character> Regex;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // regex_hh_INCLUDED
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include "selectors.hh"
|
#include "selectors.hh"
|
||||||
|
|
||||||
#include "regex.hh"
|
#include "string.hh"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#define shell_manager_hh_INCLUDED
|
#define shell_manager_hh_INCLUDED
|
||||||
|
|
||||||
#include "utils.hh"
|
#include "utils.hh"
|
||||||
#include "regex.hh"
|
#include "string.hh"
|
||||||
|
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
|
#include <boost/regex.hpp>
|
||||||
|
|
||||||
#include "memoryview.hh"
|
#include "memoryview.hh"
|
||||||
#include "units.hh"
|
#include "units.hh"
|
||||||
|
@ -11,6 +12,7 @@ namespace Kakoune
|
||||||
{
|
{
|
||||||
|
|
||||||
typedef wchar_t Character;
|
typedef wchar_t Character;
|
||||||
|
typedef boost::basic_regex<Character> Regex;
|
||||||
|
|
||||||
class String
|
class String
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user