mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: extraneous debug output in PackedList
- bitSet::used() method for compatibility with code using the PackedBoolList typedef, but marked as deprecated.
This commit is contained in:
@ -30,7 +30,6 @@ License
|
||||
template<unsigned Width>
|
||||
inline unsigned int Foam::PackedList<Width>::repeated_value(unsigned val)
|
||||
{
|
||||
std::cout << "call repeated_value" << nl;
|
||||
return BitOps::repeat_value<block_type,Width>(val);
|
||||
}
|
||||
|
||||
|
||||
@ -504,6 +504,14 @@ public:
|
||||
Ostream& os,
|
||||
const bitSet& bitset
|
||||
);
|
||||
|
||||
|
||||
// Housekeeping
|
||||
|
||||
//- Identical to toc()
|
||||
// \deprecated compatibility method for PackedBoolList (APR-2018)
|
||||
inline labelList used() const { return toc(); }
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user