mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
The usual set of changes for DEC cxx after Lars' work :)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@307 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
841cbfd699
commit
f1bc028820
@ -1,3 +1,9 @@
|
||||
1999-11-10 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* src/vc-backend.C, src/LaTeXFeatures.h,
|
||||
src/support/LRegex.C, src/support/LRegex.h: add a few "using"
|
||||
statements to bring templates to global namespace.
|
||||
|
||||
1999-11-10 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* src/support/lyxstring.C (operator[] const): make it standard
|
||||
|
@ -18,6 +18,7 @@
|
||||
#endif
|
||||
|
||||
#include <vector>
|
||||
using std::vector;
|
||||
|
||||
#include "LString.h"
|
||||
|
||||
|
@ -8,6 +8,8 @@
|
||||
#include <regex.h>
|
||||
#include "LRegex.h"
|
||||
|
||||
using std::make_pair;
|
||||
|
||||
///
|
||||
struct LRegex::Impl {
|
||||
///
|
||||
|
@ -12,6 +12,8 @@
|
||||
#endif
|
||||
|
||||
#include <vector>
|
||||
using std::vector;
|
||||
using std::pair;
|
||||
|
||||
#include "LString.h"
|
||||
|
||||
|
@ -5,6 +5,7 @@
|
||||
#endif
|
||||
|
||||
#include <fstream>
|
||||
using std::ifstream;
|
||||
|
||||
#include "vc-backend.h"
|
||||
#include "debug.h"
|
||||
|
Loading…
Reference in New Issue
Block a user