clang-format files.

This commit is contained in:
Markus F.X.J. Oberhumer
2017-07-22 12:47:45 +02:00
parent 6de021d8d8
commit 33dc947c21
5 changed files with 170 additions and 264 deletions
+4 -8
View File
@@ -25,7 +25,6 @@
<markus@oberhumer.com> <ezerotven+github@gmail.com>
*/
#ifndef __UPX_PACKMASTER_H
#define __UPX_PACKMASTER_H 1
@@ -33,15 +32,13 @@ class Packer;
class InputFile;
class OutputFile;
/*************************************************************************
// interface for work.cpp
**************************************************************************/
class PackMaster
{
class PackMaster {
public:
PackMaster(InputFile *f, options_t *o=NULL);
PackMaster(InputFile *f, options_t *o = NULL);
virtual ~PackMaster();
void pack(OutputFile *fo);
@@ -50,8 +47,8 @@ public:
void list();
void fileInfo();
typedef Packer* (*visit_func_t)(Packer *p, void *user);
static Packer* visitAllPackers(visit_func_t, InputFile *f, const options_t *, void *user);
typedef Packer *(*visit_func_t)(Packer *p, void *user);
static Packer *visitAllPackers(visit_func_t, InputFile *f, const options_t *, void *user);
private:
InputFile *fi;
@@ -65,7 +62,6 @@ private:
options_t *saved_opt;
};
#endif /* already included */
/* vim:set ts=4 sw=4 et: */