Skip to content

Commit

Permalink
fix compilation errors on mint
Browse files Browse the repository at this point in the history
  • Loading branch information
wwiv committed Oct 17, 2024
1 parent 0a7c831 commit 5d9bef3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
1 change: 1 addition & 0 deletions common/input.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "common/context.h"
#include "common/remote_io.h"
#include <chrono>
#include <cstdint>
#include <functional>
#include <set>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions sdk/ansi/makeansi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
/**************************************************************************/
#include "sdk/ansi/makeansi.h"

#include <cstdint>
#include <string>
#include <vector>

Expand Down
14 changes: 5 additions & 9 deletions sdk/ansi/makeansi.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,12 @@
/* either express or implied. See the License for the specific */
/* language governing permissions and limitations under the License. */
/**************************************************************************/
#ifndef __INCLUDED_SDK_MAKEANSI_H__
#define __INCLUDED_SDK_MAKEANSI_H__
#ifndef INCLUDED_SDK_MAKEANSI_H
#define INCLUDED_SDK_MAKEANSI_H

#include <string>

namespace wwiv {
namespace sdk {
namespace ansi {
namespace wwiv::sdk::ansi {

/**
* Passed to this function is a one-byte attribute as defined for IBM type
Expand All @@ -31,8 +29,6 @@ namespace ansi {
*/
std::string makeansi(int attr, int current_attr);

} // namespace ansi
} // namespace sdk
} // namespace wwiv
} // namespace wwiv::sdk::ansi

#endif // __INCLUDED_SDK_MAKEANSI_H__
#endif // INCLUDED_SDK_MAKEANSI_H

0 comments on commit 5d9bef3

Please sign in to comment.