Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
b8db52dd
Commit
b8db52dd
authored
Jun 23, 2008
by
Mark Olesen
Committed by
graham
Jun 23, 2008
Browse files
find-longlines
* output full file path * some preliminary file edits to restore 80-col max.
parent
76901cdc
Changes
6
Hide whitespace changes
Inline
Side-by-side
doc/Doxygen/tools/find-longlines
View file @
b8db52dd
...
...
@@ -31,7 +31,7 @@ sub wanted {
if
(
$maxlen
<
length
)
{
$count
++
;
substr
(
$_
,
$maxlen
,
0
)
=
"
||->>
";
# show truncation point
print
"
$
ARGV
$.
$_
\n
";
print
"
$
File
::Find::name
$.
$_
\n
";
}
}
close
ARGV
;
...
...
src/OpenFOAM/db/IOstreams/IOstreams/IOmanip.H
View file @
b8db52dd
...
...
@@ -170,19 +170,28 @@ inline Smanip<ios_base::fmtflags> setf
}
inline
Omanip
<
IOstream
::
streamFormat
>
setformat
(
const
IOstream
::
streamFormat
fmt
)
inline
Omanip
<
IOstream
::
streamFormat
>
setformat
(
const
IOstream
::
streamFormat
fmt
)
{
return
Omanip
<
IOstream
::
streamFormat
>
(
&
IOstream
::
format
,
fmt
);
}
inline
Omanip
<
IOstream
::
versionNumber
>
setversion
(
const
IOstream
::
versionNumber
ver
)
inline
Omanip
<
IOstream
::
versionNumber
>
setversion
(
const
IOstream
::
versionNumber
ver
)
{
return
Omanip
<
IOstream
::
versionNumber
>
(
&
IOstream
::
version
,
ver
);
}
inline
Omanip
<
IOstream
::
compressionType
>
setcompression
(
const
IOstream
::
compressionType
cmp
)
inline
Omanip
<
IOstream
::
compressionType
>
setcompression
(
const
IOstream
::
compressionType
cmp
)
{
return
Omanip
<
IOstream
::
compressionType
>
(
&
IOstream
::
compression
,
cmp
);
}
...
...
src/OpenFOAM/db/Time/timeSelector.H
View file @
b8db52dd
...
...
@@ -117,7 +117,7 @@ public:
//- Select a list of Time values that are within the ranges
void
inplaceSelect
(
List
<
instant
>&
)
const
;
//- Add the
set of
options handled by timeSelector to argList::validOptions
//- Add the options handled by timeSelector to argList::validOptions
//
// @param constant
// Add the @b -constant option to include the @c constant/ directory
...
...
src/OpenFOAM/global/argList/argList.H
View file @
b8db52dd
...
...
@@ -198,7 +198,7 @@ public:
return
globalCase_
;
}
//- Return case name
for
parallel run or
the
global case
for a
serial run
//- Return case name
(
parallel run
)
or global case
(
serial run
)
const
fileName
&
caseName
()
const
{
return
case_
;
...
...
src/OpenFOAM/meshes/ProcessorTopology/commSchedule.H
View file @
b8db52dd
...
...
@@ -36,7 +36,7 @@ Description
Does a very simple scheduling which assumes same time for all operations.
After construction:
- schedule() gives the order in which the input communication should
happen
- schedule() gives the order in which the input communication should
occur
- procSchedule()[procI] gives per procI
Does not care whether 'talking' is first send, second receive or maybe
...
...
src/OpenFOAM/meshes/polyMesh/mapPolyMesh/objectMap/objectMapI.H
View file @
b8db52dd
...
...
@@ -90,7 +90,7 @@ inline const labelList& objectMap::masterObjects() const
}
// * * * * * * * * * * * * * * * * Fri
master
Operators * * * * * * * * * * * * //
// * * * * * * * * * * * * * * * * Fri
end
Operators * * * * * * * * * * * * //
inline
bool
operator
==
(
const
objectMap
&
a
,
const
objectMap
&
b
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment