From 1a22ef17fa7056b2be7fecd3eecad2a5a36c780d Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 3 Aug 2020 15:57:46 -0600 Subject: Run clang formatter --- src/02/04/hash_test.c | 3 ++- src/02/04/list.c | 1 - src/02/04/main.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/02') diff --git a/src/02/04/hash_test.c b/src/02/04/hash_test.c index b10e9e1..1157c4e 100644 --- a/src/02/04/hash_test.c +++ b/src/02/04/hash_test.c @@ -63,7 +63,8 @@ TestSuite *hash_table_tests() { add_test_with_context(suite, HashTable, when_getting_a_values_for_a_key_that_has_been_inserted); add_test_with_context(suite, HashTable, when_a_hash_collision_occurs); - add_test_with_context(suite, HashTable, when_inserting_multiple_items_into_the_hash_table); + add_test_with_context(suite, HashTable, + when_inserting_multiple_items_into_the_hash_table); return suite; } diff --git a/src/02/04/list.c b/src/02/04/list.c index 99f8c83..cfc3b2c 100644 --- a/src/02/04/list.c +++ b/src/02/04/list.c @@ -48,7 +48,6 @@ void list_inspect(Node *self, Printer printer) { printf("["); while (self) { printer(self->data); - /*printf(" %p ", self->data);*/ self = self->next; } printf("]\n"); diff --git a/src/02/04/main.c b/src/02/04/main.c index 0db6346..4dacb08 100644 --- a/src/02/04/main.c +++ b/src/02/04/main.c @@ -1,5 +1,5 @@ -#include #include "hash.h" +#include int main(int argc, char *argv[]) { printf("=== COMP-272 - Assignment 02 - Question 04 ===\n"); -- cgit v1.2.3