From 1cb88b7ef9c509bd604fac533b537581aa712c1e Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Wed, 2 Jun 2021 19:33:20 -0400
Subject: [PATCH] Slightly more helpful comments

---
 interface/pybind11_wrapper.cpp | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/interface/pybind11_wrapper.cpp b/interface/pybind11_wrapper.cpp
index ddbe7fe..7751203 100644
--- a/interface/pybind11_wrapper.cpp
+++ b/interface/pybind11_wrapper.cpp
@@ -2,9 +2,11 @@
 
 namespace py = pybind11;
 
-// These are each in separate files to move the compilation into 
-// multiple compilation units so that multiple processors can be use
-// at the same time 
+// The implementation of each prototype are in separate files to move the compilation into 
+// multiple compilation units so that multiple processors can be used
+// at the same time to carry out the compilation
+// 
+// This speeds up things a lot on linux, but not much in MSVC
 void add_vdW(py::module &m);
 void add_PCSAFT(py::module& m);
 void add_CPA(py::module& m);
-- 
GitLab