Skip to content

Commit

Permalink
Add missing linefeed on end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
RanolP committed Feb 23, 2020
1 parent 8961949 commit f19997d
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -412,4 +412,4 @@ healthchecksdb
# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/

# End of https://www.gitignore.io/api/c++,cmake,visualstudio,visualstudiocode
# End of https://www.gitignore.io/api/c++,cmake,visualstudio,visualstudiocode
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ add_subdirectory(./src/spaic)
add_subdirectory(./src/spaic-css)
add_subdirectory(./src/spaic-dom)

add_subdirectory(./examples)
add_subdirectory(./examples)
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ include_directories("../include/")
file(GLOB_RECURSE SOURCE_LIST "./*.cpp")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "../bin")

add_executable(${PROJECT_NAME} ${SOURCE_LIST})
add_executable(${PROJECT_NAME} ${SOURCE_LIST})
2 changes: 1 addition & 1 deletion include/spaic-css/CSS.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ namespace spaic
{
template <typename... T>
spaic::css::Stylesheet css(T... params);
}
}
2 changes: 1 addition & 1 deletion include/spaic/Component.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ class ComponentBody
};
template <typename Props, typename StateSet>
Component<Props> create_component(Props props, StateSet state, Update update, Render render);
} // namespace spaic::comp
} // namespace spaic::comp
2 changes: 1 addition & 1 deletion include/spaic/Message.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ class Message
typename std::tuple_element<I, std::tuple<T...>>::type get();
};

} // namespace spaic::msg
} // namespace spaic::msg
2 changes: 1 addition & 1 deletion include/spaic/State.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ class State
// todo:
T &operator*();
};
} // namespace spaic::state
} // namespace spaic::state
2 changes: 1 addition & 1 deletion include/spaic/VNode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ using VNode = std::variant<
float,
double,
long double>;
} // namespace spaic::vnode
} // namespace spaic::vnode
2 changes: 1 addition & 1 deletion src/spaic-css/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ include_directories("../../include/")
file(GLOB_RECURSE SOURCE_LIST "./*.cpp")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "../../bin")

add_library(${PROJECT_NAME} STATIC ${SOURCE_LIST})
add_library(${PROJECT_NAME} STATIC ${SOURCE_LIST})
2 changes: 1 addition & 1 deletion src/spaic-dom/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ include_directories("../../include/")
file(GLOB_RECURSE SOURCE_LIST "./*.cpp")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "../../bin")

add_library(${PROJECT_NAME} STATIC ${SOURCE_LIST})
add_library(${PROJECT_NAME} STATIC ${SOURCE_LIST})
2 changes: 1 addition & 1 deletion src/spaic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ include_directories("../../include/")
file(GLOB_RECURSE SOURCE_LIST "./*.cpp")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "../../bin")

add_library(${PROJECT_NAME} STATIC ${SOURCE_LIST})
add_library(${PROJECT_NAME} STATIC ${SOURCE_LIST})

0 comments on commit f19997d

Please sign in to comment.