mirror of
https://github.com/wfjm/w11.git
synced 2026-02-02 07:01:38 +00:00
move using after includes (clang warning)
This commit is contained in:
@@ -56,6 +56,7 @@ The full set of tests is only run for tagged releases.
|
||||
- fixes for uninitialized variables (coverity, all uncritical)
|
||||
- now -Wunused-parameter clean (comment out unused params)
|
||||
- now -Wunused-variable clean (comment out so far unused code)
|
||||
- move `using namespace std` after includes (clang warning)
|
||||
- some selected clang -Weverything aspects
|
||||
- now -Wdocumentation clean (some wrong doxygen trailing comments)
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// $Id: RtclRw11UnitDisk.cpp 983 2018-01-02 20:35:59Z mueller $
|
||||
// $Id: RtclRw11UnitDisk.cpp 1053 2018-10-06 20:34:52Z mueller $
|
||||
//
|
||||
// Copyright 2013-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
||||
// Copyright 2013-2018 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
||||
//
|
||||
// This program is free software; you may redistribute and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free
|
||||
@@ -13,7 +13,8 @@
|
||||
//
|
||||
// Revision History:
|
||||
// Date Rev Version Comment
|
||||
// 2017-04-08 870 1.1 use Rw11UnitDisk& ObjUV(); inherit from RtclRw11Unit
|
||||
// 2018-10-06 1053 1.2.1 move using after includes (clang warning)
|
||||
// 2017-04-08 870 1.2 use Rw11UnitDisk& ObjUV(); inherit from RtclRw11Unit
|
||||
// 2015-05-14 680 1.1.1 fGets: remove enabled, now in RtclRw11UnitBase
|
||||
// 2015-03-21 659 1.1 fGets: add enabled
|
||||
// 2013-04-19 507 1.0 Initial version
|
||||
@@ -25,10 +26,10 @@
|
||||
\brief Implemenation of RtclRw11UnitDisk.
|
||||
*/
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include "RtclRw11UnitDisk.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
/*!
|
||||
\class Retro::RtclRw11UnitDisk
|
||||
\brief FIXME_docs
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// $Id: RtclRw11UnitStream.cpp 983 2018-01-02 20:35:59Z mueller $
|
||||
// $Id: RtclRw11UnitStream.cpp 1053 2018-10-06 20:34:52Z mueller $
|
||||
//
|
||||
// Copyright 2013-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
||||
// Copyright 2013-2018 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
||||
//
|
||||
// This program is free software; you may redistribute and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free
|
||||
@@ -13,6 +13,7 @@
|
||||
//
|
||||
// Revision History:
|
||||
// Date Rev Version Comment
|
||||
// 2018-10-06 1053 1.1.1 move using after includes (clang warning)
|
||||
// 2017-04-08 870 1.1 use Rw11UnitStream& ObjUV(); inh from RtclRw11Unit
|
||||
// 2013-05-01 513 1.0 Initial version
|
||||
// ---------------------------------------------------------------------------
|
||||
@@ -22,10 +23,10 @@
|
||||
\brief Implemenation of RtclRw11UnitStream.
|
||||
*/
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include "RtclRw11UnitStream.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
/*!
|
||||
\class Retro::RtclRw11UnitStream
|
||||
\brief FIXME_docs
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// $Id: RtclRw11UnitTape.cpp 983 2018-01-02 20:35:59Z mueller $
|
||||
// $Id: RtclRw11UnitTape.cpp 1053 2018-10-06 20:34:52Z mueller $
|
||||
//
|
||||
// Copyright 2015-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
||||
// Copyright 2015-2018 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
||||
//
|
||||
// This program is free software; you may redistribute and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free
|
||||
@@ -13,6 +13,7 @@
|
||||
//
|
||||
// Revision History:
|
||||
// Date Rev Version Comment
|
||||
// 2018-10-06 1053 1.1.1 move using after includes (clang warning)
|
||||
// 2017-04-08 870 1.1 use Rw11UnitTape& ObjUV(); inherit from RtclRw11Unit
|
||||
// 2015-06-04 686 1.0 Initial version
|
||||
// 2015-05-17 683 0.1 First draft
|
||||
@@ -23,10 +24,10 @@
|
||||
\brief Implemenation of RtclRw11UnitTape.
|
||||
*/
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include "RtclRw11UnitTape.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
/*!
|
||||
\class Retro::RtclRw11UnitTape
|
||||
\brief FIXME_docs
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// $Id: RtclRw11UnitTerm.cpp 983 2018-01-02 20:35:59Z mueller $
|
||||
// $Id: RtclRw11UnitTerm.cpp 1053 2018-10-06 20:34:52Z mueller $
|
||||
//
|
||||
// Copyright 2013-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
||||
// Copyright 2013-2018 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
||||
//
|
||||
// This program is free software; you may redistribute and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free
|
||||
@@ -13,6 +13,7 @@
|
||||
//
|
||||
// Revision History:
|
||||
// Date Rev Version Comment
|
||||
// 2018-10-06 1053 1.1.1 move using after includes (clang warning)
|
||||
// 2017-04-08 870 1.1 use Rw11UnitTerm& ObjUV(); inherit from RtclRw11Unit
|
||||
// 2013-04-26 511 1.0.1 add M_type
|
||||
// 2013-03-03 494 1.0 Initial version
|
||||
@@ -24,10 +25,10 @@
|
||||
\brief Implemenation of RtclRw11UnitTerm.
|
||||
*/
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include "RtclRw11UnitTerm.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
/*!
|
||||
\class Retro::RtclRw11UnitTerm
|
||||
\brief FIXME_docs
|
||||
|
||||
Reference in New Issue
Block a user