Fixed Selection being defined as a struct and class

This commit is contained in:
Justin Frank 2019-02-08 19:25:40 -08:00
parent 699d066ebd
commit 29342836a6
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ else
LDFLAGS += -rdynamic
endif
CXXFLAGS += -pedantic -std=c++17 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address -Wno-noexcept-type -Wno-unknown-attributes -Wno-unknown-warning-option
CXXFLAGS += -pedantic -std=c++17 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address
all : kak

View File

@ -10,7 +10,7 @@
namespace Kakoune
{
class Selection;
struct Selection;
class Buffer;
class Regex;
class Context;