From 88bc50a9dca45f34c4c4d6e77d32f40fe1075e65 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 30 Mar 2001 12:02:07 +0000 Subject: [PATCH] Augment TODOs with a tag indicating that something should be made that depends on further progress with the compilers. git-svn-id: https://svn.dealii.org/trunk@4356 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/parameter_handler.h | 2 +- deal.II/base/include/base/tensor.h | 2 +- deal.II/base/include/base/tensor_base.h | 4 ++-- deal.II/base/source/exceptions.cc | 4 ++-- deal.II/base/source/parameter_handler.cc | 4 ++-- deal.II/deal.II/include/fe/fe_base.h | 2 +- deal.II/deal.II/include/grid/tria.h | 2 +- deal.II/deal.II/include/grid/tria_iterator.h | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/deal.II/base/include/base/parameter_handler.h b/deal.II/base/include/base/parameter_handler.h index f5e3ceb9ae..de981b196a 100644 --- a/deal.II/base/include/base/parameter_handler.h +++ b/deal.II/base/include/base/parameter_handler.h @@ -14,7 +14,7 @@ #define __deal2__parameter_handler_h -//TODO:[WB] Use numeric_limits to designate the default values of bounds parameters +//TODO:[WB] (compiler) Use numeric_limits to designate the default values of bounds parameters // of Patterns::Integer and Patterns::Double. This would then allow to use half-open // intervals as well, among other advantages. diff --git a/deal.II/base/include/base/tensor.h b/deal.II/base/include/base/tensor.h index cf4d690a08..825256a229 100644 --- a/deal.II/base/include/base/tensor.h +++ b/deal.II/base/include/base/tensor.h @@ -392,7 +392,7 @@ Tensor::memory_consumption () be properly accessed (haven't investigated why). If anyone has a better idea, realize it! */ -//TODO:[WB] move the exceptions back into the Tensor class, if the compiler allows to do so. Also rename them back (i.e. drop the initial Tensor* from the name) +//TODO:[WB] (compiler) move the exceptions back into the Tensor class, if the compiler allows to do so. Also rename them back (i.e. drop the initial Tensor* from the name) DeclException1 (ExcInvalidTensorIndex, int, << "Invalid tensor index " << arg1); diff --git a/deal.II/base/include/base/tensor_base.h b/deal.II/base/include/base/tensor_base.h index ef65282796..6b3de82437 100644 --- a/deal.II/base/include/base/tensor_base.h +++ b/deal.II/base/include/base/tensor_base.h @@ -20,7 +20,7 @@ // everytime we use a point. -//TODO:[WB] Change to when that becomes available +//TODO:[WB] (compiler) Change to when that becomes available #include #include @@ -244,7 +244,7 @@ class Tensor<1,dim> /** * Exception */ -//TODO:[WB] move the exceptions back into the Tensor class, if the compiler allows to do so. Also rename them back (i.e. drop the initial Tensor* from the name) +//TODO:[WB] (compiler) move the exceptions back into the Tensor class, if the compiler allows to do so. Also rename them back (i.e. drop the initial Tensor* from the name) DeclException2(ExcWrongVectorSize, int, int, << "Tensor has " << arg1 << " entries, but vector has size " << arg2); DeclException1 (ExcDimTooSmall, diff --git a/deal.II/base/source/exceptions.cc b/deal.II/base/source/exceptions.cc index 058b10d8eb..976d88bbfa 100644 --- a/deal.II/base/source/exceptions.cc +++ b/deal.II/base/source/exceptions.cc @@ -12,8 +12,8 @@ //---------------------------- exceptions.cc --------------------------- -//TODO:[WB] use [io]stringstream instead of [io]strstream if they become available -//TODO:[WB] replace s.c_str() by s when that is possible +//TODO:[WB] (compiler) use i/ostringstream instead of i/ostrstream if they become available +//TODO:[WB] (compiler) replace s.c_str() by s when that is possible #include diff --git a/deal.II/base/source/parameter_handler.cc b/deal.II/base/source/parameter_handler.cc index 8a5abf354d..24a4c097ba 100644 --- a/deal.II/base/source/parameter_handler.cc +++ b/deal.II/base/source/parameter_handler.cc @@ -12,8 +12,8 @@ //---------------------------- parameter_handler.cc --------------------------- -//TODO:[WB] use [io]stringstream instead of [io]strstream if they become available -//TODO:[WB] replace s.c_str() by s when that is possible +//TODO:[WB] (compiler) use i/ostringstream instead of i/ostrstream if they become available +//TODO:[WB] (compiler) replace s.c_str() by s when that is possible #include #include diff --git a/deal.II/deal.II/include/fe/fe_base.h b/deal.II/deal.II/include/fe/fe_base.h index 056da7fa01..a67b68ae2a 100644 --- a/deal.II/deal.II/include/fe/fe_base.h +++ b/deal.II/deal.II/include/fe/fe_base.h @@ -182,7 +182,7 @@ class FiniteElementData * me (WB) why we have to declare and implement * this one explicitely. */ -//TODO:[WB] remove operator and let the compiler generate it as soon as it is willing to do so +//TODO:[WB] (compiler) remove operator and let the compiler generate it as soon as it is willing to do so bool operator == (const FiniteElementData &) const; /** diff --git a/deal.II/deal.II/include/grid/tria.h b/deal.II/deal.II/include/grid/tria.h index 59ed117f7e..aed1c76238 100644 --- a/deal.II/deal.II/include/grid/tria.h +++ b/deal.II/deal.II/include/grid/tria.h @@ -324,7 +324,7 @@ class TriaDimensionInfo<3> /*------------------------------------------------------------------------*/ -//TODO:[WB] Move the TriaNumberCache into the Triangulation class +//TODO:[WB] (compiler) Move the TriaNumberCache into the Triangulation class // once the compiler supports this (gcc2.95 does not allow this at present) diff --git a/deal.II/deal.II/include/grid/tria_iterator.h b/deal.II/deal.II/include/grid/tria_iterator.h index 3ed59972eb..57e89eb0ae 100644 --- a/deal.II/deal.II/include/grid/tria_iterator.h +++ b/deal.II/deal.II/include/grid/tria_iterator.h @@ -13,7 +13,7 @@ /*---------------------------- tria-iterator.h ---------------------------*/ -//TODO:[WB] Change to when that becomes available +//TODO:[WB] (compiler) Change to when that becomes available #include #include #include -- 2.39.5