Removed warnings from compiler.

This commit is contained in:
Xavier Raynaud 2012-04-18 14:33:44 +02:00
parent 9bb4b2c51d
commit 5da5b2e325
2 changed files with 6 additions and 4 deletions

View File

@ -51,7 +51,7 @@ PROJECT_LOGO =
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY =
OUTPUT_DIRECTORY = ../Documentation
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
# 4096 sub-directories (in 2 levels) under the output directory of each output
@ -610,7 +610,8 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT = opm/core tutorials examples
# INPUT = opm/core tutorials examples
INPUT = tutorials
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is

View File

@ -220,7 +220,6 @@ int main ()
using namespace Opm;
GridManager grid(nx, ny, nz, dx, dy, dz);
int num_cells = grid.c_grid()->number_of_cells;
int num_faces = grid.c_grid()->number_of_faces;
/// \endcode
/// \page tutorial3
@ -479,7 +478,7 @@ void TwophaseFluid::mobility(int c, const Sat& s, Mob& mob, DMob& dmob) const
template <class Sat,
class Pcap,
class DPcap>
void TwophaseFluid::pc(int c, const Sat& s, Pcap& pcap, DPcap& dpcap) const
void TwophaseFluid::pc(int /*c */, const Sat& /* s*/, Pcap& pcap, DPcap& dpcap) const
{
pcap = 0.;
dpcap = 0.;
@ -514,7 +513,9 @@ double TwophaseFluid::s_max(int c) const
/// </TR>
/// </TABLE>
/// \page tutorial3
/// \details
/// \section completecode3 Complete source code:
/// \include tutorial3.cpp
/// \include generate_doc_figures.py