From: Jean-Marc Lasgouttes Date: Wed, 10 Nov 1999 14:07:28 +0000 (+0000) Subject: The usual set of changes for DEC cxx after Lars' work :) X-Git-Tag: 1.6.10~22528 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f1bc028820f0aa3164affb8ceac93ecd21f41bd2;p=features.git 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 --- diff --git a/ChangeLog b/ChangeLog index 2af69b377d..0e073a51a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-11-10 Jean-Marc Lasgouttes + + * 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 * src/support/lyxstring.C (operator[] const): make it standard diff --git a/src/LaTeXFeatures.h b/src/LaTeXFeatures.h index 9962d17a74..58bbedb840 100644 --- a/src/LaTeXFeatures.h +++ b/src/LaTeXFeatures.h @@ -18,6 +18,7 @@ #endif #include +using std::vector; #include "LString.h" diff --git a/src/support/LRegex.C b/src/support/LRegex.C index 6f7af728ac..0db78a0a8e 100644 --- a/src/support/LRegex.C +++ b/src/support/LRegex.C @@ -8,6 +8,8 @@ #include #include "LRegex.h" +using std::make_pair; + /// struct LRegex::Impl { /// diff --git a/src/support/LRegex.h b/src/support/LRegex.h index ebafc85402..361a6b1f68 100644 --- a/src/support/LRegex.h +++ b/src/support/LRegex.h @@ -12,6 +12,8 @@ #endif #include +using std::vector; +using std::pair; #include "LString.h" diff --git a/src/vc-backend.C b/src/vc-backend.C index 8c0a29adf3..1d1b5b0732 100644 --- a/src/vc-backend.C +++ b/src/vc-backend.C @@ -5,6 +5,7 @@ #endif #include +using std::ifstream; #include "vc-backend.h" #include "debug.h"