Skip to content

Commit

Permalink
FIX: one ";" too many
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Motsak authored and mohamed-barakat committed Nov 9, 2011
1 parent 1f4ff97 commit 74efabb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kernel/ideals.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ extern ideal currQuotient;
ideal idCopyFirstK (const ideal ide, const int k);

/// delete an ideal
inline void idDelete (ideal* h, ring r = currRing) { id_Delete(h, r); } ;
inline void idDelete (ideal* h, ring r = currRing)
{
id_Delete(h, r);
}

/// initialise the maximal ideal (at 0)
//ideal id_MaxIdeal(int deg, const ring r);
Expand Down

0 comments on commit 74efabb

Please sign in to comment.