//
// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
//
// The contents of this file are covered under the licence agreement in the
// file "LICENCE" distributed with Cforall.
//
// FixInit.h --
//
// Author           : Rob Schluntz
// Created On       : Wed Jan 13 16:29:30 2016
// Last Modified By : Peter A. Buhr
// Last Modified On : Sat Jul 22 09:31:06 2017
// Update Count     : 6
//

#pragma once

#include <list>    // for list
#include <string>  // for string

class Declaration;

namespace InitTweak {
  /// replace constructor initializers with expression statements
  /// and unwrap basic C-style initializers
	void fix( std::list< Declaration * > & translationUnit, bool inLibrary );
} // namespace

// Local Variables: //
// tab-width: 4 //
// mode: c++ //
// compile-command: "make install" //
// End: //
