Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ deps=
coverage: pylint
coverage: mypy
coverage: Pygments
coverage: setuptools
docs: docutils
docs: furo
docs: sphinx
Expand Down
8 changes: 4 additions & 4 deletions vunit/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,11 @@ def _failed_to_find_primary_design_unit_in_library(source_file_name, primary_des

As shown below:

{num-1}| {content[num-2].rstrip()}
{num - 1}| {content[num - 2].rstrip()}
{num}| {line.rstrip()}
{num+1}|+ {line.split('=')[0].rstrip()}.add_vhdl_builtins() # Add this line!
{num+2}| {content[num].rstrip()}
{num+3}| {content[num+1].rstrip()}
{num + 1}|+ {line.split('=')[0].rstrip()}.add_vhdl_builtins() # Add this line!
{num + 2}| {content[num].rstrip()}
{num + 3}| {content[num + 1].rstrip()}
"""
hline = "=" * 75
print(hline)
Expand Down