-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
From 288f9e1cbf42ee981cdfd2dc5250d1a4308df068 Mon Sep 17 00:00:00 2001 | ||
From: Maximilian Marx <[email protected]> | ||
Date: Wed, 12 Jun 2024 15:08:23 +0200 | ||
Subject: [PATCH] Fix missing include | ||
|
||
--- | ||
src/vlog/ml/LogisticRegression.cpp | 1 + | ||
src/vlog/ml/helper.cpp | 1 + | ||
2 files changed, 2 insertions(+) | ||
|
||
diff --git a/src/vlog/ml/LogisticRegression.cpp b/src/vlog/ml/LogisticRegression.cpp | ||
index bc7dae2..ab68fda 100644 | ||
--- a/src/vlog/ml/LogisticRegression.cpp | ||
+++ b/src/vlog/ml/LogisticRegression.cpp | ||
@@ -5,6 +5,7 @@ | ||
#include <vlog/ml/LogisticRegression.h> | ||
#include <cstdlib> | ||
#include <cassert> | ||
+#include <cstdint> | ||
#include <vlog/ml/helper.h> | ||
|
||
using namespace std; | ||
diff --git a/src/vlog/ml/helper.cpp b/src/vlog/ml/helper.cpp | ||
index 245f21d..34929ad 100644 | ||
--- a/src/vlog/ml/helper.cpp | ||
+++ b/src/vlog/ml/helper.cpp | ||
@@ -5,6 +5,7 @@ | ||
#include <sstream> | ||
#include <iostream> | ||
#include <ctime> | ||
+#include <cstdint> | ||
#include <vlog/ml/helper.h> | ||
|
||
using namespace std; | ||
-- | ||
2.44.1 | ||
|