mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 18:48:20 +00:00
Use #pragma once in Base64.h
This commit is contained in:
parent
295c28b48e
commit
33c26e9ea3
3 changed files with 6 additions and 5 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
3.1.0-dev.240 | 2019-11-01 15:58:55 -0700
|
||||||
|
|
||||||
|
* Use #pragma once in Base64.h (Jon Siwek, Corelight)
|
||||||
|
|
||||||
3.1.0-dev.239 | 2019-10-31 12:18:16 -0700
|
3.1.0-dev.239 | 2019-10-31 12:18:16 -0700
|
||||||
|
|
||||||
* Fix Travis CI script to run Coverity build in container (Jon Siwek, Corelight)
|
* Fix Travis CI script to run Coverity build in container (Jon Siwek, Corelight)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
3.1.0-dev.239
|
3.1.0-dev.240
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef base64_h
|
#pragma once
|
||||||
#define base64_h
|
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -71,5 +70,3 @@ protected:
|
||||||
|
|
||||||
BroString* decode_base64(const BroString* s, const BroString* a = 0, Connection* conn = 0);
|
BroString* decode_base64(const BroString* s, const BroString* a = 0, Connection* conn = 0);
|
||||||
BroString* encode_base64(const BroString* s, const BroString* a = 0, Connection* conn = 0);
|
BroString* encode_base64(const BroString* s, const BroString* a = 0, Connection* conn = 0);
|
||||||
|
|
||||||
#endif /* base64_h */
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue