mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Requiring C+11 & purging boost includes makes functional.h useless.
This commit is contained in:
parent
ae1ecba10c
commit
aa7ca6a6bd
@ -17,9 +17,11 @@
|
|||||||
#include <QWaitCondition>
|
#include <QWaitCondition>
|
||||||
|
|
||||||
#include "support/bind.h"
|
#include "support/bind.h"
|
||||||
#include "support/functional.h"
|
|
||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
|
||||||
|
using std::function;
|
||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
|
|
||||||
|
@ -65,7 +65,6 @@ liblyxsupport_a_SOURCES = \
|
|||||||
filetools.h \
|
filetools.h \
|
||||||
ForkedCalls.cpp \
|
ForkedCalls.cpp \
|
||||||
ForkedCalls.h \
|
ForkedCalls.h \
|
||||||
functional.h \
|
|
||||||
gettext.cpp \
|
gettext.cpp \
|
||||||
gettext.h \
|
gettext.h \
|
||||||
gzstream.cpp \
|
gzstream.cpp \
|
||||||
|
@ -12,8 +12,6 @@
|
|||||||
#ifndef LYX_BIND_H
|
#ifndef LYX_BIND_H
|
||||||
#define LYX_BIND_H
|
#define LYX_BIND_H
|
||||||
|
|
||||||
#include "support/functional.h"
|
|
||||||
|
|
||||||
namespace lyx
|
namespace lyx
|
||||||
{
|
{
|
||||||
using std::placeholders::_1;
|
using std::placeholders::_1;
|
||||||
|
@ -1,23 +0,0 @@
|
|||||||
// -*- C++ -*-
|
|
||||||
/**
|
|
||||||
* \file functional.h
|
|
||||||
* This file is part of LyX, the document processor.
|
|
||||||
* Licence details can be found in the file COPYING.
|
|
||||||
*
|
|
||||||
* \author Peter Kümmel
|
|
||||||
*
|
|
||||||
* Full author contact details are available in file CREDITS.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef LYX_FUNCTIONAL_H
|
|
||||||
#define LYX_FUNCTIONAL_H
|
|
||||||
|
|
||||||
#include <functional>
|
|
||||||
|
|
||||||
namespace lyx
|
|
||||||
{
|
|
||||||
using std::function;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue
Block a user