Skip to content

Commit

Permalink
Address PR comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwpeterson committed Nov 17, 2017
1 parent d0115c0 commit 07cdc2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions test/include/bcs/BiharmonicLapBC.h
Expand Up @@ -32,10 +32,9 @@ class BiharmonicLapBC : public IntegratedBC
{
public:
BiharmonicLapBC(const InputParameters & parameters);
virtual ~BiharmonicLapBC() {}

protected:
virtual Real computeQpResidual();
virtual Real computeQpResidual() override;

/// User-provided function which computes the Laplacian.
Function & _lap_u;
Expand Down
4 changes: 2 additions & 2 deletions test/include/kernels/Biharmonic.h
Expand Up @@ -34,8 +34,8 @@ class Biharmonic : public Kernel
Biharmonic(const InputParameters & parameters);

protected:
virtual Real computeQpResidual();
virtual Real computeQpJacobian();
virtual Real computeQpResidual() override;
virtual Real computeQpJacobian() override;

const VariableSecond & _second_u;
const VariablePhiSecond & _second_phi;
Expand Down

0 comments on commit 07cdc2c

Please sign in to comment.