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:
Jean-Marc Lasgouttes 1999-11-10 14:07:28 +00:00
parent 841cbfd699
commit f1bc028820
5 changed files with 12 additions and 0 deletions

View File

@ -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

View File

@ -18,6 +18,7 @@
#endif
#include <vector>
using std::vector;
#include "LString.h"

View File

@ -8,6 +8,8 @@
#include <regex.h>
#include "LRegex.h"
using std::make_pair;
///
struct LRegex::Impl {
///

View File

@ -12,6 +12,8 @@
#endif
#include <vector>
using std::vector;
using std::pair;
#include "LString.h"

View File

@ -5,6 +5,7 @@
#endif
#include <fstream>
using std::ifstream;
#include "vc-backend.h"
#include "debug.h"