From 53c379e1233ebd91dbad818a9c4188d5ebcb5fc2 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 27 Sep 2002 15:58:30 +0000 Subject: [PATCH] Put some names into std:: git-svn-id: https://svn.dealii.org/trunk@6544 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparse_direct.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 14d409d07a..cca11b9e62 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -241,7 +241,7 @@ struct SparseDirectMA27::DetachedModeData if ((ret<0) && (errno==EINTR)) goto try_write; - fflush (NULL); + std::fflush (NULL); }; template @@ -356,7 +356,7 @@ SparseDirectMA27::initialize (const SparsityPattern &sp) pipe(detached_mode_data->client_server_pipe); // fflush(NULL) is said to be a // good idea before fork() - fflush(NULL); + std::fflush(NULL); // now fork and create child // process @@ -388,7 +388,7 @@ SparseDirectMA27::initialize (const SparsityPattern &sp) // herewith: AssertThrow (false, ExcMessage ("execv returned, which it is not supposed to do!")); - exit(1); + std::exit(1); }; // parent process continues here. // close unneeded end of pipe -- 2.39.5