[Tex/LaTex] Center Contents heading in tocloft v2.3f

horizontal alignmenttable of contentstocloft

In the past, I believe this technique was used to center the Contents heading in the table of contents via tocloft:

\documentclass{report}
\usepackage{tocloft}

\renewcommand{\cfttoctitlefont}{\hfill \Huge}
\renewcommand{\cftaftertoctitle}{\hfill}

\begin{document}

\tableofcontents

\chapter{Chap 1}
\chapter{Chap 2}
\chapter{Chap 3}

\end{document}

However I recently updated the package to version v2.3f (2013-05-02) and this no longer centers the heading.

contents

How do I fix this? The answers for a related question do not work.

Best Answer

From the comment by Marco Daniel, the following modification works.

\documentclass{report}
\usepackage{tocloft}

\renewcommand{\cfttoctitlefont}{\hfil \Huge}

\begin{document}

\tableofcontents

\chapter{Chap 1}
\chapter{Chap 2}
\chapter{Chap 3}

\end{document}

enter image description here