filter: minor code cleanup

This commit is contained in:
Maxime Coste 2012-11-23 18:35:05 +01:00
parent ecd556db59
commit 6a7193cf63
2 changed files with 2 additions and 2 deletions

View File

@ -6,14 +6,13 @@
#include "string.hh" #include "string.hh"
#include "utils.hh" #include "utils.hh"
#include "memoryview.hh" #include "memoryview.hh"
#include "selection.hh"
#include "function_registry.hh" #include "function_registry.hh"
namespace Kakoune namespace Kakoune
{ {
class Buffer; class Buffer;
class BufferIterator; class Selection;
// A Filter is a function which is applied to a Buffer and a pending // A Filter is a function which is applied to a Buffer and a pending
// Modification in order to mutate the Buffer or the Modification // Modification in order to mutate the Buffer or the Modification

View File

@ -1,6 +1,7 @@
#include "filters.hh" #include "filters.hh"
#include "buffer.hh" #include "buffer.hh"
#include "filter_group.hh" #include "filter_group.hh"
#include "selection.hh"
namespace Kakoune namespace Kakoune
{ {