-
- Downloads
COMP: resolve label-size=64 ambiguities for clang
* DynList construction with integer parameter: DynList<T>(int32_t) - eg DynList<T> lst(10) Candidates are DynList(const label) template<class ListType> DynList(const ListType& lst) It picks the second as the beter match (error). Resolve by adding DynList(int32_t) constructor for label-size=64 * Similar problem with copy assignment. dyList = -1 (for example) picks template<class ListType> operator=(const ListType& lst) Resolve by replacing general list assignment with assignments for DynList, UList, FixedList
Showing
- meshLibrary/utilities/containers/DynList/DynList.H 27 additions, 7 deletionsmeshLibrary/utilities/containers/DynList/DynList.H
- meshLibrary/utilities/containers/DynList/DynListI.H 72 additions, 81 deletionsmeshLibrary/utilities/containers/DynList/DynListI.H
- meshLibrary/utilities/octrees/meshOctree/meshOctree.C 2 additions, 2 deletionsmeshLibrary/utilities/octrees/meshOctree/meshOctree.C
- meshLibrary/utilities/octrees/meshOctree/meshOctreeAutomaticRefinement/meshOctreeAutomaticRefinement.C 1 addition, 1 deletion...OctreeAutomaticRefinement/meshOctreeAutomaticRefinement.C
- meshLibrary/utilities/octrees/meshOctree/meshOctreeCreator/meshOctreeCreatorCreateOctreeBoxes.C 7 additions, 6 deletions...ee/meshOctreeCreator/meshOctreeCreatorCreateOctreeBoxes.C
- meshLibrary/utilities/octrees/meshOctree/meshOctreeCube/meshOctreeCubeCoordinatesI.H 1 addition, 1 deletion...es/meshOctree/meshOctreeCube/meshOctreeCubeCoordinatesI.H
Loading